From 1c998bd984481fa4aac96126c8ada4e9cdd47db8 Mon Sep 17 00:00:00 2001 From: Himani Vyas Date: Mon, 16 Mar 2020 13:03:38 -0700 Subject: [PATCH 01/30] reverting changes for ASK key --- src/azure-cli/azure/cli/command_modules/ams/_help.py | 4 ++++ src/azure-cli/azure/cli/command_modules/ams/_params.py | 2 +- .../cli/command_modules/ams/operations/content_key_policy.py | 4 ++-- .../ams/tests/latest/test_ams_content_key_policy_scenarios.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index ed85280dd05..132122c9a14 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -250,6 +250,10 @@ helps['ams content-key-policy create'] = """ type: command short-summary: Create a new content key policy. + examples: + - name: Create an content-key-policy with a FairPlay Configuration. + text: > + az ams content-key-policy create -a amsAccount -g resourceGroup -n contentKeyPolicyName --policy-option-name policyOptionName --open-restriction --ask "ask-32-chars-hex-string" --fair-play-pfx pfxPath --fair-play-pfx-password "pfxPassword" --rental-and-lease-key-type PersistentUnlimited --rental-duration 5000 """ helps['ams content-key-policy show'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 172ee6c0328..a33d06f54ea 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -217,7 +217,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem help='The type of token. Allowed values: {}.'.format(", ".join(get_token_type_completion_list()))) c.argument('open_id_connect_discovery_document', arg_group='Token Restriction', help='The OpenID connect discovery document.') c.argument('widevine_template', arg_group='Widevine Configuration', help='JSON Widevine license template. Use @{file} to load from a file.') - c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key.') + c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key, which is a 32 character hex string.') c.argument('fair_play_pfx_password', arg_group='FairPlay Configuration', help='The password encrypting FairPlay certificate in PKCS 12 (pfx) format.') c.argument('fair_play_pfx', arg_group='FairPlay Configuration', help='The filepath to a FairPlay certificate file in PKCS 12 (pfx) format (including private key).') c.argument('rental_and_lease_key_type', arg_group='FairPlay Configuration', help='The rental and lease key type. Available values: {}.'.format(", ".join(get_fairplay_rentalandlease_completion_list()))) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index f1dc7bcf52f..194c20cf284 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -196,7 +196,7 @@ def update_content_key_policy_option(client, resource_group_name, account_name, policy_option.configuration = ContentKeyPolicyWidevineConfiguration(widevine_template=widevine_template) elif isinstance(policy_option.configuration, ContentKeyPolicyFairPlayConfiguration): if ask is not None: - policy_option.configuration.ask = bytearray(ask, 'utf-8') + policy_option.configuration.ask = bytearray.fromhex(ask) if fair_play_pfx_password is not None: policy_option.configuration.fair_play_pfx_password = fair_play_pfx_password @@ -269,7 +269,7 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat if valid_fairplay_configuration: configuration = ContentKeyPolicyFairPlayConfiguration( - ask=bytearray(ask, 'utf-8'), fair_play_pfx_password=fair_play_pfx_password, + ask=bytearray.fromhex(ask), fair_play_pfx_password=fair_play_pfx_password, fair_play_pfx=_b64_to_str(_read_binary(fair_play_pfx)).decode('ascii'), rental_and_lease_key_type=rental_and_lease_key_type, rental_duration=rental_duration) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py index 2ec17cfff34..e479d91b501 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py @@ -180,7 +180,7 @@ def test_content_key_policy_create_with_fairplay(self, storage_account_for_creat 'description': 'ExampleDescription', 'policyOptionName': policy_option_name, 'configurationODataType': '#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration', - 'ask': 'testtesttesttest', + 'ask': '1234567890ABCDEF1234567890ABCDEF', 'fairPlayPfx': _get_test_data_file('TestCert2.pfx'), 'fairPlayPfxPassword': 'password', 'rentalAndLeaseKeyType': 'Undefined', From 67c7e04abea496927099acaec326c2ad3a7b90b8 Mon Sep 17 00:00:00 2001 From: Himani Vyas Date: Mon, 16 Mar 2020 13:07:35 -0700 Subject: [PATCH 02/30] reverting changes --- src/azure-cli/azure/cli/command_modules/ams/_help.py | 4 ---- src/azure-cli/azure/cli/command_modules/ams/_params.py | 2 +- .../cli/command_modules/ams/operations/content_key_policy.py | 4 ++-- .../ams/tests/latest/test_ams_content_key_policy_scenarios.py | 2 +- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 132122c9a14..ed85280dd05 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -250,10 +250,6 @@ helps['ams content-key-policy create'] = """ type: command short-summary: Create a new content key policy. - examples: - - name: Create an content-key-policy with a FairPlay Configuration. - text: > - az ams content-key-policy create -a amsAccount -g resourceGroup -n contentKeyPolicyName --policy-option-name policyOptionName --open-restriction --ask "ask-32-chars-hex-string" --fair-play-pfx pfxPath --fair-play-pfx-password "pfxPassword" --rental-and-lease-key-type PersistentUnlimited --rental-duration 5000 """ helps['ams content-key-policy show'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index a33d06f54ea..172ee6c0328 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -217,7 +217,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem help='The type of token. Allowed values: {}.'.format(", ".join(get_token_type_completion_list()))) c.argument('open_id_connect_discovery_document', arg_group='Token Restriction', help='The OpenID connect discovery document.') c.argument('widevine_template', arg_group='Widevine Configuration', help='JSON Widevine license template. Use @{file} to load from a file.') - c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key, which is a 32 character hex string.') + c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key.') c.argument('fair_play_pfx_password', arg_group='FairPlay Configuration', help='The password encrypting FairPlay certificate in PKCS 12 (pfx) format.') c.argument('fair_play_pfx', arg_group='FairPlay Configuration', help='The filepath to a FairPlay certificate file in PKCS 12 (pfx) format (including private key).') c.argument('rental_and_lease_key_type', arg_group='FairPlay Configuration', help='The rental and lease key type. Available values: {}.'.format(", ".join(get_fairplay_rentalandlease_completion_list()))) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index 194c20cf284..f1dc7bcf52f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -196,7 +196,7 @@ def update_content_key_policy_option(client, resource_group_name, account_name, policy_option.configuration = ContentKeyPolicyWidevineConfiguration(widevine_template=widevine_template) elif isinstance(policy_option.configuration, ContentKeyPolicyFairPlayConfiguration): if ask is not None: - policy_option.configuration.ask = bytearray.fromhex(ask) + policy_option.configuration.ask = bytearray(ask, 'utf-8') if fair_play_pfx_password is not None: policy_option.configuration.fair_play_pfx_password = fair_play_pfx_password @@ -269,7 +269,7 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat if valid_fairplay_configuration: configuration = ContentKeyPolicyFairPlayConfiguration( - ask=bytearray.fromhex(ask), fair_play_pfx_password=fair_play_pfx_password, + ask=bytearray(ask, 'utf-8'), fair_play_pfx_password=fair_play_pfx_password, fair_play_pfx=_b64_to_str(_read_binary(fair_play_pfx)).decode('ascii'), rental_and_lease_key_type=rental_and_lease_key_type, rental_duration=rental_duration) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py index e479d91b501..2ec17cfff34 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py @@ -180,7 +180,7 @@ def test_content_key_policy_create_with_fairplay(self, storage_account_for_creat 'description': 'ExampleDescription', 'policyOptionName': policy_option_name, 'configurationODataType': '#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration', - 'ask': '1234567890ABCDEF1234567890ABCDEF', + 'ask': 'testtesttesttest', 'fairPlayPfx': _get_test_data_file('TestCert2.pfx'), 'fairPlayPfxPassword': 'password', 'rentalAndLeaseKeyType': 'Undefined', From 44e755fa8fc2525db03736df34643f98e44fc827 Mon Sep 17 00:00:00 2001 From: hivyas Date: Fri, 24 Apr 2020 14:31:31 -0700 Subject: [PATCH 03/30] updated ams module to dec 2019 swagger --- .../azure/cli/command_modules/ams/_params.py | 4 +- .../cli/command_modules/ams/_sdk_utils.py | 4 +- .../ams/operations/content_key_policy.py | 37 ++++++++++++------- .../ams/operations/transform.py | 21 ++++++----- src/azure-cli/setup.py | 2 +- 5 files changed, 42 insertions(+), 26 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 172ee6c0328..fe4da02f71f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -217,7 +217,9 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem help='The type of token. Allowed values: {}.'.format(", ".join(get_token_type_completion_list()))) c.argument('open_id_connect_discovery_document', arg_group='Token Restriction', help='The OpenID connect discovery document.') c.argument('widevine_template', arg_group='Widevine Configuration', help='JSON Widevine license template. Use @{file} to load from a file.') - c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key.') + c.argument('fp_playback_duration_seconds', arg_group='FairPlay Configuration', help='Playback duration') + c.argument('fp_storage_duration_seconds', arg_group='FairPlay Configuration', help='Storage duration') + c.argument('ask', arg_group='FairPlay Configuration', help='The key that must be used as FairPlay Application Secret Key, which is a 32 character hex string.') c.argument('fair_play_pfx_password', arg_group='FairPlay Configuration', help='The password encrypting FairPlay certificate in PKCS 12 (pfx) format.') c.argument('fair_play_pfx', arg_group='FairPlay Configuration', help='The filepath to a FairPlay certificate file in PKCS 12 (pfx) format (including private key).') c.argument('rental_and_lease_key_type', arg_group='FairPlay Configuration', help='The rental and lease key type. Available values: {}.'.format(", ".join(get_fairplay_rentalandlease_completion_list()))) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index c1ac8a10761..53775d02e18 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -13,7 +13,7 @@ def get_sdk_model_class(class_name): def get_stand_alone_presets(): - return ['AudioAnalyzer', 'VideoAnalyzer'] + return ['AudioAnalyzer', 'VideoAnalyzer', 'FaceDetector'] def get_cdn_providers(): @@ -30,7 +30,7 @@ def get_token_types(): def get_rentalandlease_types(): - return ['Undefined', 'PersistentUnlimited', 'PersistentLimited'] + return ['Undefined', 'DualExpiry', 'PersistentUnlimited', 'PersistentLimited'] def get_tokens(): diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index f1dc7bcf52f..f9f6e72d778 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -24,8 +24,8 @@ ContentKeyPolicyRsaTokenKey, ContentKeyPolicyX509CertificateTokenKey, ContentKeyPolicyTokenRestriction, ContentKeyPolicyTokenClaim, ContentKeyPolicyWidevineConfiguration, ContentKeyPolicyFairPlayConfiguration, - ContentKeyPolicyPlayReadyConfiguration, ContentKeyPolicyPlayReadyLicense, - ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, + ContentKeyPolicyFairPlayOfflineRentalConfiguration, ContentKeyPolicyPlayReadyConfiguration, + ContentKeyPolicyPlayReadyLicense, ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, ContentKeyPolicyPlayReadyPlayRight, ContentKeyPolicyPlayReadyExplicitAnalogTelevisionRestriction) @@ -38,7 +38,8 @@ def create_content_key_policy(client, resource_group_name, account_name, content alt_symmetric_token_keys=None, alt_rsa_token_keys=None, alt_x509_token_keys=None, token_claims=None, token_type=None, open_id_connect_discovery_document=None, widevine_template=None, ask=None, fair_play_pfx_password=None, fair_play_pfx=None, - rental_and_lease_key_type=None, rental_duration=None, play_ready_template=None): + rental_and_lease_key_type=None, rental_duration=None, play_ready_template=None, + fp_playback_duration_seconds=None, fp_storage_duration_seconds=None): policy_option = _generate_content_key_policy_option(policy_option_name, clear_key_configuration, open_restriction, issuer, audience, token_key, token_key_type, @@ -46,7 +47,8 @@ def create_content_key_policy(client, resource_group_name, account_name, content alt_x509_token_keys, token_claims, token_type, open_id_connect_discovery_document, widevine_template, ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration, play_ready_template) + rental_and_lease_key_type, rental_duration, play_ready_template, + fp_playback_duration_seconds, fp_storage_duration_seconds) return client.create_or_update(resource_group_name, account_name, content_key_policy_name, [policy_option], description) @@ -86,7 +88,8 @@ def add_content_key_policy_option(client, resource_group_name, account_name, con alt_symmetric_token_keys=None, alt_rsa_token_keys=None, alt_x509_token_keys=None, token_claims=None, token_type=None, open_id_connect_discovery_document=None, widevine_template=None, ask=None, fair_play_pfx_password=None, fair_play_pfx=None, - rental_and_lease_key_type=None, rental_duration=None, play_ready_template=None): + rental_and_lease_key_type=None, rental_duration=None, play_ready_template=None, + fp_playback_duration_seconds=None, fp_storage_duration_seconds=None): policy = client.get_policy_properties_with_secrets(resource_group_name, account_name, content_key_policy_name) @@ -102,7 +105,8 @@ def add_content_key_policy_option(client, resource_group_name, account_name, con alt_x509_token_keys, token_claims, token_type, open_id_connect_discovery_document, widevine_template, ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration, play_ready_template) + rental_and_lease_key_type, rental_duration, play_ready_template, + fp_playback_duration_seconds, fp_storage_duration_seconds) options.append(policy_option) @@ -196,7 +200,7 @@ def update_content_key_policy_option(client, resource_group_name, account_name, policy_option.configuration = ContentKeyPolicyWidevineConfiguration(widevine_template=widevine_template) elif isinstance(policy_option.configuration, ContentKeyPolicyFairPlayConfiguration): if ask is not None: - policy_option.configuration.ask = bytearray(ask, 'utf-8') + policy_option.configuration.ask = bytearray.fromhex(ask) if fair_play_pfx_password is not None: policy_option.configuration.fair_play_pfx_password = fair_play_pfx_password @@ -240,7 +244,8 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat alt_symmetric_token_keys, alt_rsa_token_keys, alt_x509_token_keys, token_claims, token_type, open_id_connect_discovery_document, widevine_template, ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration, play_ready_template): + rental_and_lease_key_type, rental_duration, play_ready_template, + fp_playback_duration_seconds, fp_storage_duration_seconds): configuration = None restriction = None @@ -250,7 +255,7 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat valid_fairplay_configuration = _valid_fairplay_configuration(ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, - rental_duration) + rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds) valid_playready_configuration = _valid_playready_configuration(play_ready_template) @@ -268,11 +273,14 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat configuration = ContentKeyPolicyWidevineConfiguration(widevine_template=widevine_template) if valid_fairplay_configuration: + offline_configuration = None + if rental_and_lease_key_type == 'DualExpiry': + offline_configuration = ContentKeyPolicyFairPlayOfflineRentalConfiguration(playback_duration_seconds=fp_playback_duration_seconds, storage_duration_seconds=fp_storage_duration_seconds) configuration = ContentKeyPolicyFairPlayConfiguration( - ask=bytearray(ask, 'utf-8'), fair_play_pfx_password=fair_play_pfx_password, + ask=bytearray.fromhex(ask), fair_play_pfx_password=fair_play_pfx_password, fair_play_pfx=_b64_to_str(_read_binary(fair_play_pfx)).decode('ascii'), rental_and_lease_key_type=rental_and_lease_key_type, - rental_duration=rental_duration) + rental_duration=rental_duration, offline_rental_configuration=offline_configuration) if valid_playready_configuration: configuration = _play_ready_configuration_factory(json.loads(play_ready_template)) @@ -465,8 +473,11 @@ def _valid_token_restriction(token_key, token_key_type, token_type, issuer, audi def _valid_fairplay_configuration(ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration): - return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration]) + rental_and_lease_key_type, rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds): + if rental_and_lease_key_type == 'DualExpiry': + return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds]) + else: + return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration]) def _valid_playready_configuration(play_ready_template): diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index 93682e9b853..e4b0747aa29 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py @@ -18,10 +18,10 @@ def create_transform(client, account_name, resource_group_name, transform_name, preset, insights_to_extract=None, audio_language=None, on_error=None, - relative_priority=None, description=None): + relative_priority=None, description=None, resolution=None): outputs = [build_transform_output(preset, insights_to_extract, audio_language, - on_error, relative_priority)] + on_error, relative_priority, resolution)] return client.create_or_update(resource_group_name, account_name, transform_name, outputs, description) @@ -29,7 +29,7 @@ def create_transform(client, account_name, resource_group_name, transform_name, def add_transform_output(client, account_name, resource_group_name, transform_name, preset, insights_to_extract=None, audio_language=None, on_error=None, - relative_priority=None): + relative_priority=None, resolution=None): transform = client.get(resource_group_name, account_name, transform_name) @@ -37,15 +37,15 @@ def add_transform_output(client, account_name, resource_group_name, transform_na show_resource_not_found_message(resource_group_name, account_name, 'transforms', transform_name) transform.outputs.append(build_transform_output(preset, insights_to_extract, audio_language, - on_error, relative_priority)) + on_error, relative_priority, resolution)) return client.create_or_update(resource_group_name, account_name, transform_name, transform.outputs) def build_transform_output(preset, insights_to_extract, audio_language, on_error, - relative_priority): + relative_priority, resolution): - validate_arguments(preset, insights_to_extract, audio_language) + validate_arguments(preset, insights_to_extract, audio_language, resolution) transform_output = get_transform_output(preset) if preset == 'VideoAnalyzer': @@ -53,6 +53,8 @@ def build_transform_output(preset, insights_to_extract, audio_language, on_error transform_output.preset.insights_to_extract = insights_to_extract elif preset == 'AudioAnalyzer': transform_output.preset.audio_language = audio_language + elif preset == 'FaceDetector': + transform_output.preset.resolution = resolution if on_error is not None: transform_output.on_error = OnErrorType(on_error) @@ -63,14 +65,16 @@ def build_transform_output(preset, insights_to_extract, audio_language, on_error return transform_output -def validate_arguments(preset, insights_to_extract, audio_language): +def validate_arguments(preset, insights_to_extract, audio_language, resolution): if insights_to_extract and preset != 'VideoAnalyzer': raise CLIError("insights-to-extract argument only works with VideoAnalyzer preset type.") - if audio_language and preset not in get_stand_alone_presets(): + if audio_language and (preset != 'VideoAnalyzer' or preset != 'AudioAnalyzer'): raise CLIError("audio-language argument only works with VideoAnalyzer or AudioAnalyzer preset types.") + if resolution and preset != 'FaceDetector': + raise CLIError("resolution argument only works with FaceDetector preset type.") def remove_transform_output(client, account_name, resource_group_name, transform_name, output_index): transform = client.get(resource_group_name, account_name, transform_name) @@ -101,7 +105,6 @@ def update_transform(instance, description=None): def get_transform_output(preset): transform_preset = None - try: if os.path.exists(preset): transform_preset = parse_standard_encoder_preset(preset) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 704c969d73d..9ebba73470a 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -98,7 +98,7 @@ 'azure-mgmt-managementgroups~=0.1', 'azure-mgmt-maps~=0.1.0', 'azure-mgmt-marketplaceordering~=0.1', - 'azure-mgmt-media~=1.1,>=1.1.1', + 'azure-mgmt-media~=2.1,>=2.1.0', 'azure-mgmt-monitor~=0.7.0', 'azure-mgmt-msi~=0.2', 'azure-mgmt-netapp~=0.7.0', From dc0e4669fa272dde814bdef703f6181e99786dd8 Mon Sep 17 00:00:00 2001 From: hivyas Date: Tue, 28 Apr 2020 15:00:48 -0700 Subject: [PATCH 04/30] added test cases --- .../ams/operations/content_key_policy.py | 11 +++--- .../test_ams_content_key_policy_scenarios.py | 39 ++++++++++++++++++- .../latest/test_ams_transform_scenarios.py | 8 +++- 3 files changed, 50 insertions(+), 8 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index f9f6e72d778..012abfd2d77 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -276,8 +276,11 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat offline_configuration = None if rental_and_lease_key_type == 'DualExpiry': offline_configuration = ContentKeyPolicyFairPlayOfflineRentalConfiguration(playback_duration_seconds=fp_playback_duration_seconds, storage_duration_seconds=fp_storage_duration_seconds) + if (ask is not None): + ask=bytearray.fromhex(ask) configuration = ContentKeyPolicyFairPlayConfiguration( - ask=bytearray.fromhex(ask), fair_play_pfx_password=fair_play_pfx_password, + ask=ask, + fair_play_pfx_password=fair_play_pfx_password, fair_play_pfx=_b64_to_str(_read_binary(fair_play_pfx)).decode('ascii'), rental_and_lease_key_type=rental_and_lease_key_type, rental_duration=rental_duration, offline_rental_configuration=offline_configuration) @@ -474,11 +477,7 @@ def _valid_token_restriction(token_key, token_key_type, token_type, issuer, audi def _valid_fairplay_configuration(ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds): - if rental_and_lease_key_type == 'DualExpiry': - return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds]) - else: - return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration]) - + return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration]) def _valid_playready_configuration(play_ready_template): if play_ready_template is None: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py index 2ec17cfff34..cc9ba400296 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py @@ -180,7 +180,7 @@ def test_content_key_policy_create_with_fairplay(self, storage_account_for_creat 'description': 'ExampleDescription', 'policyOptionName': policy_option_name, 'configurationODataType': '#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration', - 'ask': 'testtesttesttest', + 'ask': '1234567890ABCDEF1234567890ABCDEF', 'fairPlayPfx': _get_test_data_file('TestCert2.pfx'), 'fairPlayPfxPassword': 'password', 'rentalAndLeaseKeyType': 'Undefined', @@ -198,6 +198,43 @@ def test_content_key_policy_create_with_fairplay(self, storage_account_for_creat self.check('options[0].configuration.rentalDuration', '{rentalDuration}') ]) + @ResourceGroupPreparer() + @StorageAccountPreparer(parameter_name='storage_account_for_create') + def test_content_key_policy_create_with_fairplay_offline(self, storage_account_for_create): + amsname = self.create_random_name(prefix='ams', length=12) + policy_name = self.create_random_name(prefix='pn', length=12) + policy_option_name = self.create_random_name(prefix='pon', length=12) + + self.kwargs.update({ + 'amsname': amsname, + 'storageAccount': storage_account_for_create, + 'location': 'eastasia', + 'contentKeyPolicyName': policy_name, + 'description': 'ExampleDescription', + 'policyOptionName': policy_option_name, + 'configurationODataType': '#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration', + 'ask': '1234567890ABCDEF1234567890ABCDEF', + 'fairPlayPfx': _get_test_data_file('TestCert2.pfx'), + 'fairPlayPfxPassword': 'password', + 'rentalAndLeaseKeyType': 'DualExpiry', + 'fairPlayPlaybackDurationSeconds': 60, + 'fairPlayStorageDurationSeconds': 60, + 'rentalDuration': 60, + 'restrictionODataType': '#Microsoft.Media.ContentKeyPolicyOpenRestriction' + }) + + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}') + + self.cmd('az ams content-key-policy create -a {amsname} -n {contentKeyPolicyName} -g {rg} --open-restriction --description {description} --ask {ask} --fair-play-pfx "{fairPlayPfx}" --fair-play-pfx-password {fairPlayPfxPassword} --rental-and-lease-key-type {rentalAndLeaseKeyType} --fp-playback-duration-seconds {fairPlayPlaybackDurationSeconds} --fp-storage-duration-seconds {fairPlayStorageDurationSeconds} --rental-duration {rentalDuration} --policy-option-name {policyOptionName}', checks=[ + self.check('name', '{contentKeyPolicyName}'), + self.check('options[0].configuration.odatatype', '{configurationODataType}'), + self.check('options[0].restriction.odatatype', '{restrictionODataType}'), + self.check('options[0].configuration.rentalAndLeaseKeyType', '{rentalAndLeaseKeyType}'), + self.check('options[0].configuration.rentalDuration', 0), + self.check('options[0].configuration.offlineRentalConfiguration.playbackDurationSeconds', '{fairPlayPlaybackDurationSeconds}'), + self.check('options[0].configuration.offlineRentalConfiguration.storageDurationSeconds', '{fairPlayStorageDurationSeconds}') + ]) + @ResourceGroupPreparer() @StorageAccountPreparer(parameter_name='storage_account_for_create') def test_content_key_policy_create_with_token(self, storage_account_for_create): diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py index c30b1df402c..95cc928d16b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py @@ -165,9 +165,11 @@ def test_ams_transform_output_add(self, storage_account_for_output_add): self.kwargs.update({ 'presetName': 'AudioAnalyzer', 'presetName2': 'VideoAnalyzer', + 'presetName3': 'FaceDetector', 'audioLanguage': 'es-ES', 'audioLanguage2': 'en-US', - 'insightsToExtract': 'AudioInsightsOnly' + 'insightsToExtract': 'AudioInsightsOnly', + 'resolution': 'SourceResolution' }) self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName} --audio-language {audioLanguage}', checks=[ @@ -178,3 +180,7 @@ def test_ams_transform_output_add(self, storage_account_for_output_add): self.check('outputs[3].preset.audioLanguage', '{audioLanguage2}'), self.check('outputs[3].preset.insightsToExtract', '{insightsToExtract}') ]) + + self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName3} --resolution', checks=[ + self.check('outputs[3].preset.resolution', '{resolution}') + ]) From eaf7f5953a033a597f89b3df01c2fc0459f96a3f Mon Sep 17 00:00:00 2001 From: hivyas Date: Wed, 29 Apr 2020 14:08:44 -0700 Subject: [PATCH 05/30] added ability to update offlinerental --- .../ams/operations/content_key_policy.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index 012abfd2d77..4f4e5d69f9e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -137,8 +137,8 @@ def update_content_key_policy_option(client, resource_group_name, account_name, add_alt_token_key_type=None, token_claims=None, token_type=None, open_id_connect_discovery_document=None, widevine_template=None, ask=None, fair_play_pfx_password=None, fair_play_pfx=None, - rental_and_lease_key_type=None, rental_duration=None, - play_ready_template=None): + rental_and_lease_key_type=None, rental_duration=None, play_ready_template=None, + fp_playback_duration_seconds=None, fp_storage_duration_seconds=None): policy = client.get_policy_properties_with_secrets( resource_group_name=resource_group_name, account_name=account_name, @@ -213,6 +213,13 @@ def update_content_key_policy_option(client, resource_group_name, account_name, if rental_duration is not None: policy_option.configuration.rental_duration = rental_duration + + if fp_playback_duration_seconds is not None: + policy_option.configuration.fp_playback_duration_seconds = fp_playback_duration_seconds + + if fp_storage_duration_seconds is not None: + policy_option.configuration.fp_storage_duration_seconds = fp_storage_duration_seconds + elif isinstance(policy_option.configuration, ContentKeyPolicyPlayReadyConfiguration): if play_ready_template is not None and _valid_playready_configuration(play_ready_template): _play_ready_configuration_factory(json.loads(play_ready_template)) From 0885ea928412308bab459d0f525e96a86c5f706a Mon Sep 17 00:00:00 2001 From: hivyas Date: Wed, 29 Apr 2020 17:02:30 -0700 Subject: [PATCH 06/30] fixed audio language bug --- .../azure/cli/command_modules/ams/operations/transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index e4b0747aa29..04c2940ba9c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py @@ -70,7 +70,7 @@ def validate_arguments(preset, insights_to_extract, audio_language, resolution): if insights_to_extract and preset != 'VideoAnalyzer': raise CLIError("insights-to-extract argument only works with VideoAnalyzer preset type.") - if audio_language and (preset != 'VideoAnalyzer' or preset != 'AudioAnalyzer'): + if audio_language and preset != 'VideoAnalyzer' and preset != 'AudioAnalyzer': raise CLIError("audio-language argument only works with VideoAnalyzer or AudioAnalyzer preset types.") if resolution and preset != 'FaceDetector': From 2cd98d7496b6bc518159f5f0171d39e1ebd2e650 Mon Sep 17 00:00:00 2001 From: hivyas Date: Thu, 7 May 2020 11:47:33 -0700 Subject: [PATCH 07/30] fixing requirements*.txt files --- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index d0728d69dfc..e4b44778983 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -54,7 +54,7 @@ azure-mgmt-loganalytics==0.5.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==1.1.1 +azure-mgmt-media==2.1.0 azure-mgmt-monitor==0.9.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.8.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 2b169d258e5..0d6480c114b 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -54,7 +54,7 @@ azure-mgmt-loganalytics==0.5.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==1.1.1 +azure-mgmt-media==2.1.0 azure-mgmt-monitor==0.9.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.8.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index ab1b2f75c79..4377e46fd24 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -53,7 +53,7 @@ azure-mgmt-loganalytics==0.5.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==1.1.1 +azure-mgmt-media==2.1.0 azure-mgmt-monitor==0.9.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.8.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index e84aba1c9d9..7d247136b6c 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -99,7 +99,7 @@ 'azure-mgmt-maps~=0.1.0', 'azure-mgmt-marketplaceordering~=0.1', 'azure-mgmt-media~=2.1,>=2.1.0', - 'azure-mgmt-monitor~=0.7.0', + 'azure-mgmt-monitor~=0.9.0', 'azure-mgmt-msi~=0.2', 'azure-mgmt-netapp~=0.8.0', 'azure-mgmt-network~=10.1.0', From 3b31409f1a6aadfc8c6d978c4cc1702961642762 Mon Sep 17 00:00:00 2001 From: hivyas Date: Thu, 7 May 2020 16:18:53 -0700 Subject: [PATCH 08/30] Fixed transforms test case and national bug --- .../cli/command_modules/ams/operations/mru.py | 2 +- .../latest/recordings/test_ams_transform.yaml | 164 +++--- ...st_ams_transform_create_custom_preset.yaml | 278 +--------- ...ransform_create_custom_preset_invalid.yaml | 264 +--------- .../test_ams_transform_output_add.yaml | 473 +++++++----------- .../latest/test_ams_transform_scenarios.py | 4 +- 6 files changed, 282 insertions(+), 903 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index c15517c59be..f3ce20616c1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -68,7 +68,7 @@ def _get_v2_api_endpoint(self, cli_ctx, resource_group_name, account_name): namespace=get_media_namespace(), type=get_media_type(), name=account_name) + '?api-version={}'.format(self._old_rp_api_version) - media_service_res = requests.get(cli_ctx.cloud.endpoints.resource_manager[:-1] + media_old_rp_url, + media_service_res = requests.get(cli_ctx.cloud.endpoints.resource_manager.rstrip('/') + media_old_rp_url, headers={'Authorization': 'Bearer {}'.format(access_token)}) if not media_service_res.ok: err_info = 'Request to 2015-10-01 Media API failed.' diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml index a6aadb19b24..4ca054a9a1a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml @@ -19,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"f825b7e2-64c8-47fa-8e47-35f4b7d85fe3\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"c0a4d7f2-1776-4cbb-a4fa-acc004299567\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -39,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:33 GMT + - Thu, 07 May 2020 23:15:51 GMT expires: - '-1' odata-version: @@ -76,8 +76,8 @@ interactions: ParameterSetName: - -a -n -g --preset User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -85,7 +85,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:35.34322Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:15:53.5489022Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -93,11 +93,11 @@ interactions: cache-control: - no-cache content-length: - - '644' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:35 GMT + - Thu, 07 May 2020 23:15:53 GMT expires: - '-1' odata-version: @@ -105,15 +105,13 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created @@ -131,8 +129,8 @@ interactions: ParameterSetName: - -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -140,7 +138,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:35.34322Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:15:53.5489022Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -148,11 +146,11 @@ interactions: cache-control: - no-cache content-length: - - '644' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:37 GMT + - Thu, 07 May 2020 23:15:55 GMT expires: - '-1' odata-version: @@ -160,7 +158,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -169,8 +167,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -188,8 +184,8 @@ interactions: ParameterSetName: - -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -200,7 +196,7 @@ interactions: \"The requested resource was not found.\"\r\n }\r\n}" headers: cache-control: - - private + - no-cache content-language: - en-US content-length: @@ -208,17 +204,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Sep 2019 17:21:39 GMT + - Thu, 07 May 2020 23:15:56 GMT + expires: + - '-1' + pragma: + - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 404 message: Not Found @@ -236,8 +232,8 @@ interactions: ParameterSetName: - --description -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -245,7 +241,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:35.34322Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:15:53.5489022Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -253,11 +249,11 @@ interactions: cache-control: - no-cache content-length: - - '644' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:39 GMT + - Thu, 07 May 2020 23:15:58 GMT expires: - '-1' odata-version: @@ -265,7 +261,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -274,8 +270,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -299,8 +293,8 @@ interactions: ParameterSetName: - --description -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -308,7 +302,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"description\":\"mydesc\",\"lastModified\":\"2019-09-17T17:21:42.2283306Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"description\":\"mydesc\",\"lastModified\":\"2020-05-07T23:16:00.3412458Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -316,11 +310,11 @@ interactions: cache-control: - no-cache content-length: - - '669' + - '671' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:41 GMT + - Thu, 07 May 2020 23:15:59 GMT expires: - '-1' odata-version: @@ -328,7 +322,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -339,8 +333,6 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -358,8 +350,8 @@ interactions: ParameterSetName: - --preset -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -367,7 +359,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"description\":\"mydesc\",\"lastModified\":\"2019-09-17T17:21:42.2283306Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"description\":\"mydesc\",\"lastModified\":\"2020-05-07T23:16:00.3412458Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -375,11 +367,11 @@ interactions: cache-control: - no-cache content-length: - - '669' + - '671' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:44 GMT + - Thu, 07 May 2020 23:16:01 GMT expires: - '-1' odata-version: @@ -387,7 +379,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -396,8 +388,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -436,8 +426,8 @@ interactions: ParameterSetName: - --preset -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -445,7 +435,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:46.7261568Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:16:02.7369525Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -464,11 +454,11 @@ interactions: cache-control: - no-cache content-length: - - '2175' + - '2177' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:46 GMT + - Thu, 07 May 2020 23:16:02 GMT expires: - '-1' odata-version: @@ -476,7 +466,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -486,9 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -506,8 +494,8 @@ interactions: ParameterSetName: - --output-index -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -515,7 +503,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:46.7261568Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:16:02.7369525Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -534,11 +522,11 @@ interactions: cache-control: - no-cache content-length: - - '2175' + - '2177' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:49 GMT + - Thu, 07 May 2020 23:16:03 GMT expires: - '-1' odata-version: @@ -546,7 +534,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -555,8 +543,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -594,8 +580,8 @@ interactions: ParameterSetName: - --output-index -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -603,7 +589,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:51.4461124Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:16:05.0716951Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -620,11 +606,11 @@ interactions: cache-control: - no-cache content-length: - - '1967' + - '1969' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:52 GMT + - Thu, 07 May 2020 23:16:04 GMT expires: - '-1' odata-version: @@ -632,7 +618,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -643,8 +629,6 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -662,8 +646,8 @@ interactions: ParameterSetName: - -a -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -671,7 +655,7 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-09-17T17:21:35.34322Z\",\"lastModified\":\"2019-09-17T17:21:51.4461124Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.5489022Z\",\"lastModified\":\"2020-05-07T23:16:05.0716951Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n @@ -689,11 +673,11 @@ interactions: cache-control: - no-cache content-length: - - '2131' + - '2133' content-type: - application/json; odata.metadata=minimal date: - - Tue, 17 Sep 2019 17:21:53 GMT + - Thu, 07 May 2020 23:16:06 GMT expires: - '-1' odata-version: @@ -701,7 +685,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -710,8 +694,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -731,8 +713,8 @@ interactions: ParameterSetName: - -n -a -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.71 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -746,21 +728,19 @@ interactions: content-length: - '0' date: - - Tue, 17 Sep 2019 17:21:56 GMT + - Thu, 07 May 2020 23:16:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff 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/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml index 1533ee09134..fa2293f3c8a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:54:17Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:54:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:54:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:54:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/99da53f8-7225-4e8f-9c12-445a47b196e4?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/99da53f8-7225-4e8f-9c12-445a47b196e4?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:19.1467604Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:19.1467604Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:54:18.9905096Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:54:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:54:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"43f2c300-db34-4576-8f8d-99ae5d7518f4\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"16a25a29-2a84-4b0d-8013-136256e9e52a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:40 GMT + - Thu, 07 May 2020 23:15:50 GMT expires: - '-1' odata-version: @@ -250,15 +47,13 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created @@ -295,8 +90,8 @@ interactions: ParameterSetName: - -a -n -g --preset User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -304,7 +99,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:43.6546669Z\",\"lastModified\":\"2019-06-13T22:54:43.6546669Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:53.3789624Z\",\"lastModified\":\"2020-05-07T23:15:53.3789624Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -325,7 +120,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:43 GMT + - Thu, 07 May 2020 23:15:52 GMT expires: - '-1' odata-version: @@ -333,63 +128,14 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:54:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYVkVYNVAyRUJDRlNaVzNVSFBYUklTRFdSVzJQWFhKQ01ITXw0QkNERjlBMTk3QzI4MERBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml index f717e8f09d5..4ff74811287 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:54:29Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:54:29Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:54: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: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:54:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/58083f62-2de0-470e-b2f2-d3cc0ca4b810?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/58083f62-2de0-470e-b2f2-d3cc0ca4b810?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:31.2109797Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:31.2109797Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:54:31.0547280Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:54:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:54:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "centralindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"9ece9175-c25c-4018-a76c-83d511e2ac49\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"fbf53dcf-3275-4db7-89ad-bcdea45b9b7a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:54 GMT + - Thu, 07 May 2020 23:15:50 GMT expires: - '-1' odata-version: @@ -250,63 +47,14 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:54:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFNFlQRFlYTlE1Q0xESzJCU1hJQjNBTURGNDQ3R0VEVFo3Wnw0MURDQTExODAxQTFDMTE0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml index 384513ece10..6677da8b73a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml @@ -1,154 +1,120 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:54:21Z"}}' + body: 'b''b\''{"location": "japaneast", "properties": {"storageAccounts": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}]}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - ams account create Connection: - keep-alive Content-Length: - - '110' + - '304' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:54:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan + East\",\"properties\":{\r\n \"mediaServiceId\":\"3530e1b9-4d9d-4d46-b328-b0fbd4ce2520\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '666' content-type: - - application/json; charset=utf-8 + - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:21 GMT + - Thu, 07 May 2020 23:15:49 GMT expires: - '-1' + odata-version: + - '4.0' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: '{"properties": {"outputs": [{"preset": {"@odata.type": "#Microsoft.Media.BuiltInStandardEncoderPreset", + "presetName": "AACGoodQualityAudio"}}]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - ams transform create Connection: - keep-alive Content-Length: - - '74' + - '144' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -a -n -g --preset User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 response: body: - string: '' + string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:51.2022547Z\",\"outputs\":[\r\n + \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n + \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '648' content-type: - - text/plain; charset=utf-8 + - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:22 GMT + - Thu, 07 May 2020 23:15:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1d5c25e2-187e-4d13-9b07-8c4d84ee3e49?monitor=true&api-version=2019-04-01 + odata-version: + - '4.0' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.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: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1d5c25e2-187e-4d13-9b07-8c4d84ee3e49?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:23.0061903Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:54:23.0061903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:54:22.7874371Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:54:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -157,38 +123,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - ams transform output add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --query -o + - -a -n -g --preset --on-error --relative-priority User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:51.2022547Z\",\"outputs\":[\r\n + \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n + \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '648' content-type: - - application/json + - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:41 GMT + - Thu, 07 May 2020 23:15:52 GMT expires: - '-1' + odata-version: + - '4.0' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -197,92 +167,47 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK - request: - body: 'b''b\''{"location": "japaneast", "properties": {"storageAccounts": [{"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams account create - Connection: - - keep-alive - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g --storage-account -l - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"8748c965-21f5-48fb-a6d5-ebf441e469d3\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '666' - content-type: - - application/json; odata.metadata=minimal - date: - - Thu, 13 Jun 2019 22:54:45 GMT - expires: - - '-1' - odata-version: - - '4.0' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: '{"properties": {"outputs": [{"preset": {"@odata.type": "#Microsoft.Media.BuiltInStandardEncoderPreset", - "presetName": "AACGoodQualityAudio"}}]}}' + body: '{"properties": {"outputs": [{"onError": "StopProcessingJob", "relativePriority": + "Normal", "preset": {"@odata.type": "#Microsoft.Media.BuiltInStandardEncoderPreset", + "presetName": "AACGoodQualityAudio"}}, {"onError": "ContinueJob", "relativePriority": + "High", "preset": {"@odata.type": "#Microsoft.Media.StandardEncoderPreset", + "filters": {"rotation": "Auto", "overlays": [{"inputLabel": "videooverlay", + "audioGainLevel": 1.0, "@odata.type": "#Microsoft.Media.VideoOverlay", "opacity": + 1.0}]}, "codecs": [{"@odata.type": "#Microsoft.Media.AacAudio", "channels": + 2, "samplingRate": 48000, "bitrate": 128000, "profile": "AacLc"}, {"@odata.type": + "#Microsoft.Media.H264Video", "keyFrameInterval": "PT2S", "stretchMode": "AutoSize", + "sceneChangeDetection": false, "complexity": "Balanced", "layers": [{"width": + "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": + 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": + true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": + 3, "entropyMode": "Cabac"}, {"width": "640", "height": "360", "@odata.type": + "#Microsoft.Media.H264Layer", "bitrate": 1000000, "maxBitrate": 1000000, "bFrames": + 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", + "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}]}], "formats": + [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", + "outputFiles": []}]}}]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - ams transform create + - ams transform output add Connection: - keep-alive Content-Length: - - '144' + - '1497' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset + - -a -n -g --preset --on-error --relative-priority User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -290,19 +215,30 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:47.396733Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:52.5939834Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n - \ }\r\n }\r\n ]\r\n }\r\n}" + \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n + \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n + \ }\r\n ]\r\n },\"codecs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.AacAudio\",\"channels\":2,\"samplingRate\":48000,\"bitrate\":128000,\"profile\":\"AacLc\"\r\n + \ },{\r\n \"@odata.type\":\"#Microsoft.Media.H264Video\",\"keyFrameInterval\":\"PT2S\",\"stretchMode\":\"AutoSize\",\"sceneChangeDetection\":false,\"complexity\":\"Balanced\",\"layers\":[\r\n + \ {\r\n \"width\":\"1280\",\"height\":\"720\",\"bitrate\":2000000,\"maxBitrate\":2000000,\"bFrames\":3,\"slices\":0,\"adaptiveBFrame\":true,\"profile\":\"Auto\",\"level\":\"auto\",\"bufferWindow\":\"PT5S\",\"referenceFrames\":3,\"entropyMode\":\"Cabac\"\r\n + \ },{\r\n \"width\":\"640\",\"height\":\"360\",\"bitrate\":1000000,\"maxBitrate\":1000000,\"bFrames\":3,\"slices\":0,\"adaptiveBFrame\":true,\"profile\":\"Auto\",\"level\":\"auto\",\"bufferWindow\":\"PT5S\",\"referenceFrames\":3,\"entropyMode\":\"Cabac\"\r\n + \ }\r\n ]\r\n }\r\n ],\"formats\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n + \ \r\n ]\r\n }\r\n ]\r\n }\r\n + \ }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '646' + - '2169' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:47 GMT + - Thu, 07 May 2020 23:15:52 GMT expires: - '-1' odata-version: @@ -310,18 +246,20 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.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' - x-powered-by: - - ASP.NET + - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -334,10 +272,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --preset --on-error --relative-priority + - -a -n -g --preset --audio-language User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -345,19 +283,30 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:47.396733Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:52.5939834Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n - \ }\r\n }\r\n ]\r\n }\r\n}" + \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n + \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n + \ }\r\n ]\r\n },\"codecs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.AacAudio\",\"channels\":2,\"samplingRate\":48000,\"bitrate\":128000,\"profile\":\"AacLc\"\r\n + \ },{\r\n \"@odata.type\":\"#Microsoft.Media.H264Video\",\"keyFrameInterval\":\"PT2S\",\"stretchMode\":\"AutoSize\",\"sceneChangeDetection\":false,\"complexity\":\"Balanced\",\"layers\":[\r\n + \ {\r\n \"width\":\"1280\",\"height\":\"720\",\"bitrate\":2000000,\"maxBitrate\":2000000,\"bFrames\":3,\"slices\":0,\"adaptiveBFrame\":true,\"profile\":\"Auto\",\"level\":\"auto\",\"bufferWindow\":\"PT5S\",\"referenceFrames\":3,\"entropyMode\":\"Cabac\"\r\n + \ },{\r\n \"width\":\"640\",\"height\":\"360\",\"bitrate\":1000000,\"maxBitrate\":1000000,\"bFrames\":3,\"slices\":0,\"adaptiveBFrame\":true,\"profile\":\"Auto\",\"level\":\"auto\",\"bufferWindow\":\"PT5S\",\"referenceFrames\":3,\"entropyMode\":\"Cabac\"\r\n + \ }\r\n ]\r\n }\r\n ],\"formats\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n + \ \r\n ]\r\n }\r\n ]\r\n }\r\n + \ }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '646' + - '2169' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:48 GMT + - Thu, 07 May 2020 23:15:53 GMT expires: - '-1' odata-version: @@ -365,7 +314,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -374,8 +323,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -398,7 +345,8 @@ interactions: 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}]}], "formats": [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", - "outputFiles": []}]}}]}}' + "outputFiles": []}]}}, {"preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", + "audioLanguage": "es-ES"}}]}}' headers: Accept: - application/json @@ -409,14 +357,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1497' + - '1592' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset --on-error --relative-priority + - -a -n -g --preset --audio-language User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -424,7 +372,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:49.7774666Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:54.2088584Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -438,16 +386,18 @@ interactions: \ }\r\n ]\r\n }\r\n ],\"formats\":[\r\n \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n - \ }\r\n ]\r\n }\r\n}" + \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n + \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '2357' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:49 GMT + - Thu, 07 May 2020 23:15:53 GMT expires: - '-1' odata-version: @@ -455,7 +405,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -465,9 +415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -483,10 +431,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --preset --audio-language + - -a -n -g --preset --audio-language --insights-to-extract User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -494,7 +442,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:49.7774666Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:54.2088584Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -508,16 +456,18 @@ interactions: \ }\r\n ]\r\n }\r\n ],\"formats\":[\r\n \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n - \ }\r\n ]\r\n }\r\n}" + \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n + \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2168' + - '2357' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:50 GMT + - Thu, 07 May 2020 23:15:54 GMT expires: - '-1' odata-version: @@ -525,7 +475,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -534,8 +484,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -558,8 +506,10 @@ interactions: 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}]}], "formats": [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", - "outputFiles": []}]}}, {"preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", - "audioLanguage": "es-ES"}}]}}' + "outputFiles": []}]}}, {"onError": "StopProcessingJob", "relativePriority": + "Normal", "preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", + "audioLanguage": "es-ES"}}, {"preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", + "audioLanguage": "en-US", "insightsToExtract": "AudioInsightsOnly"}}]}}' headers: Accept: - application/json @@ -570,14 +520,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1592' + - '1791' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset --audio-language + - -a -n -g --preset --audio-language --insights-to-extract User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -585,7 +535,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:52.6956836Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:55.6984171Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -601,16 +551,18 @@ interactions: \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n + \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2356' + - '2585' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:52 GMT + - Thu, 07 May 2020 23:15:55 GMT expires: - '-1' odata-version: @@ -618,7 +570,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -628,9 +580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -646,10 +596,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --preset --audio-language --insights-to-extract + - -a -n -g --preset --resolution User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -657,7 +607,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:52.6956836Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:55.6984171Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -673,16 +623,18 @@ interactions: \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n + \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2356' + - '2585' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:53 GMT + - Thu, 07 May 2020 23:15:55 GMT expires: - '-1' odata-version: @@ -690,7 +642,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -699,8 +651,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -725,8 +675,10 @@ interactions: [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", "outputFiles": []}]}}, {"onError": "StopProcessingJob", "relativePriority": "Normal", "preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", - "audioLanguage": "es-ES"}}, {"preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", - "audioLanguage": "en-US", "insightsToExtract": "AudioInsightsOnly"}}]}}' + "audioLanguage": "es-ES"}}, {"onError": "StopProcessingJob", "relativePriority": + "Normal", "preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", + "audioLanguage": "en-US", "insightsToExtract": "AudioInsightsOnly"}}, {"preset": + {"@odata.type": "#Microsoft.Media.FaceDetectorPreset", "resolution": "SourceResolution"}}]}}' headers: Accept: - application/json @@ -737,14 +689,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1791' + - '1955' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset --audio-language --insights-to-extract + - -a -n -g --preset --resolution User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -752,7 +704,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2019-06-13T22:54:47.396733Z\",\"lastModified\":\"2019-06-13T22:54:55.0068843Z\",\"outputs\":[\r\n + \ \"created\":\"2020-05-07T23:15:51.2022547Z\",\"lastModified\":\"2020-05-07T23:15:57.319004Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -770,16 +722,18 @@ interactions: \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n + \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.FaceDetectorPreset\",\"resolution\":\"SourceResolution\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2584' + - '2779' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:54:54 GMT + - Thu, 07 May 2020 23:15:57 GMT expires: - '-1' odata-version: @@ -787,7 +741,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -797,57 +751,8 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:54:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHTFBYVlYyQTRUWEdNUUVUNTQyTkZSQ0NSUElYQ0NVVEFXWnwwNDUzMjE1QzFDMDI2NEM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py index 95cc928d16b..2a09b2da27e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py @@ -181,6 +181,6 @@ def test_ams_transform_output_add(self, storage_account_for_output_add): self.check('outputs[3].preset.insightsToExtract', '{insightsToExtract}') ]) - self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName3} --resolution', checks=[ - self.check('outputs[3].preset.resolution', '{resolution}') + self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName3} --resolution {resolution}', checks=[ + self.check('outputs[4].preset.resolution', '{resolution}') ]) From b398868bb86c6db02986dccc5c3b3126189d6958 Mon Sep 17 00:00:00 2001 From: hivyas Date: Fri, 8 May 2020 11:52:26 -0700 Subject: [PATCH 09/30] updated content key policy tests --- .../test_content_key_policy_create_basic.yaml | 286 +-------------- ...ntent_key_policy_create_with_fairplay.yaml | 292 +-------------- ...y_policy_create_with_fairplay_offline.yaml | 131 +++++++ ...key_policy_create_with_playready_fail.yaml | 264 +------------- ..._policy_create_with_playready_success.yaml | 288 +-------------- ..._content_key_policy_create_with_token.yaml | 292 +-------------- ...ntent_key_policy_create_with_widevine.yaml | 286 +-------------- .../test_content_key_policy_delete_list.yaml | 330 ++--------------- .../test_content_key_policy_show_basic.yaml | 302 ++-------------- ..._content_key_policy_show_with_secrets.yaml | 326 ++--------------- .../test_content_key_policy_update.yaml | 334 ++---------------- 11 files changed, 354 insertions(+), 2777 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml index feb79869dfd..5e1a96859f7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:33Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:33Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d13f95af-31f9-4edd-8d1c-3e6dc4f72c90?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d13f95af-31f9-4edd-8d1c-3e6dc4f72c90?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:35.0059153Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:35.0059153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:34.8183881Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"4f700cda-3d40-496e-b886-5ad8a4459c26\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"c7c72c72-48d5-4757-8f38-6c6b8993a45f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:51:57 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -250,22 +47,20 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, - "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -282,8 +77,8 @@ interactions: ParameterSetName: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -291,8 +86,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"c82dfe98-214b-4ebe-81a3-670932e3a6b7\",\"created\":\"2019-06-13T22:52:00.147Z\",\"lastModified\":\"2019-06-13T22:52:00.147Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"56d849e0-d43f-46f8-b53e-6dddb3cf719d\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"1dd850d4-1ce0-4688-a989-661e2e83104d\",\"created\":\"2020-05-08T18:50:07.09Z\",\"lastModified\":\"2020-05-08T18:50:07.09Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"36841a8e-e423-4fa5-923f-33ef4b08a8cf\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -300,11 +95,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '847' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:51:59 GMT + - Fri, 08 May 2020 18:50:06 GMT expires: - '-1' odata-version: @@ -312,67 +107,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaVEFEVVhVQkMzTUxGQjVLWFpLUU0zWEM0QkpHTkdDTVRZTHxENERCMTdFNjRGQUM0MzIwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml index 1e24386f79d..370635e7c05 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:40Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:40Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e1920cb0-150a-4834-92bf-45d14a236487?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e1920cb0-150a-4834-92bf-45d14a236487?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:42.1472682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:42.1472682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:41.9597131Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"6be51d02-b2dc-4fcf-a781-0b530ce36d14\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"d94f1ef5-10e3-4764-b2e8-8b8a48c966f9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:04 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -250,25 +47,23 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.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 + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration", - "ask": "dGVzdHRlc3R0ZXN0dGVzdA==", "fairPlayPfxPassword": "password", "fairPlayPfx": + "ask": "EjRWeJCrze8SNFZ4kKvN7w==", "fairPlayPfxPassword": "password", "fairPlayPfx": "MIIKiQIBAzCCCk8GCSqGSIb3DQEHAaCCCkAEggo8MIIKODCCBO8GCSqGSIb3DQEHBqCCBOAwggTcAgEAMIIE1QYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIpWxHMQn3nwMCAggAgIIEqOPQ4cNTz/41hY7gS1uVf46gL7kB9BNecRpprnR2uOMoWlB8I8K3GiXAzNJyX8ry9P+HHBQoGrP1klaRsUFjiVGoGLOXWaZP2N201J1ARVfo3nm6dVm3H4gkIrsuKL9O7vKr1GSZsyFpcb7j738O4cw4W5o70pozFFLw8/2ecD2Zdq+9StN8Bf/mnPSC97Qtp0K70gT6STh9UuFEObjg+3TDjiCveqsHTLTxjdUdMMFgunl5siJ0UOnIUh9P2v9fbQwXGh5s1uE18dq4P625m8msh3nQ8RRXoC9PnL1/m2TDpWwanox5P3EaA1aQMORleS6a3BoSjyegBW6ZrA581Fa62I+WXseZ/o/CCWqw5u2fMWMsfTyUzuyEAG3hyaJan+Lq8LOfDf7ZKw2dC1IWRaQF8DNRlrf658ELeIwzydXTLsI3Rv2zhNPmQa4yTpy/FpQZtHomlSvQTZy0s7hA9JwsxQInRAtv+3Auwp5m7hofrXJyOWCrGThcN17rYDVh+vCJFxGUeWOBZ4bF7Blv95PKSNuaXYdb5XsYY+DZ7WnU0Tkdk0r1W0ZThjrUOnGG0rCClSGOKruyvmymhTQXnL8hzXjvvdbjm/nmUnZOOrr5k4gunD817MmqGmvVxxdAcdtipx6vUeJMgj40b/MU9z75ygHFZEYAtvMwh/Qtl3Qv01HyOHGDH7sT53KggcU+0IcAMCFkZOx6ZY62WjEtZeoGeaA7xbSTbLL32X9vPBC8s6l2KAJCRy7FLXT8VSpX/C+YM2w97YpCSJ0qtRqcj/U3OuazdupN/62CvnesYRk7d7W764nyTiHiPI6SrkdqBV65XiJfOalE1A0OFJlaUD+a0VBFRZa+9WffFXuUmrd0LIXSLlEJWNJtQGKk/5iNjjA5bcxZ69DTuvX3EihbzUQOLz5dAMG/FuKvjAcxJd2u0ioGFKCJeRIS9NtSXzVytaVv7f6FVEjLArER0lskvI6FnpZmOtUXaoBAlvlsHaN0sY+787dcdLs4HRm3HxLoxbLl1ygZtSEi2AL+o9PA/cGh3KdpoJz/QSoF7c40ABSZ+QbJ+PefS7ncTy0dHjch8gQbXARKn20ROdspbEGW7CGyxl6ipOTwkhi/HhBeFhKk4ofwu/Tmh6Q75QoxJDHp7BMCI4Z5+hvZZ6DmeybxonyNvpwdxR1DIScA0X4mkZSyJECRpOGIZZxKUhd3Uxv7UREgOs/xiCgdUoRUpoOunqROpgSb/WmjOtFVYyVh03emEnfZoaEyCNB1Dk5NzstdtWZhbvmZQBZv7xkcFw65SoEAsPgPfR7LIqN5sJcUY1KSUgvZXalb2qkEST8NB5IImxPr/GBxygo6FE/f21wfPpwNDUIvYBtBQmDlJpLVz8n6CExl5EEIi612is1vusvCEXf3m83SLJmJn77b2lqyaZjhs0UW00B8kVEfpSOndW/P1/D7HvrSCWsnPsqJF66BUHxdI9V89Coo7suMiOlL0PMUI3D3I5l5UKO3JkOFxJQwBy/GPTkcYKF6MlQdnhH62p3AnIynBbQw3nebBP5wT3WGCbDIRFMBtm9ramYg4KTP7qjQwPoKbRcwggVBBgkqhkiG9w0BBwGgggUyBIIFLjCCBSowggUmBgsqhkiG9w0BDAoBAqCCBO4wggTqMBwGCiqGSIb3DQEMAQMwDgQIcHIlDzfEz0wCAggABIIEyMsmW+kFfagAyQQ2z9kBF/LyvpePCVMWq4eDT09zQ6M978RBuDXMOIUz6ylfzx+JgLuwEfYTifac35NyexKxJjCWj8H0U+xwG6NoSL9bfgmv3O2EkUx/G7OLaShr8/S7Aq7rtbLVDxXMv8qO11g6td0JDSx1CN5Ibtyo2YZqpadlOSlL+qHa1BzxFfpX+Ef9pE2Gs25D4icMqskaA0M78Qst7usPqMM4YVIA94HZvBxvu07LbZJF9gFB0x6nIQDZEJSmCObFdyiTuVhDTbea2JKgERauuodkniSGU+U6++iQ70mV7cQcBy5tP5m/CiXmFmp+UnOHKN5TK7t1e6nGq+KPLkqBaH33XUX+xdy2PsTv12+4oetKLEBVumQDTvLFOUth/CzRfWseAk/CSX7H1XC9KlW9XfULNKFQ5G7Bguk9RrS/Sf94OOO8fZRLICMN/Q8MnIz+x5QIT2wXfspFs0x0DWPSpFUUXAlVpt4XLhOmsvcfRm3GMRetvGzSb3IgdtSyGekzs+nmDYAGQJKrYCKTpsRRlKt3e/My8nsKfVh4Pa9vPQgHU/KaxDeSKIsTRe0Hy2t9WMF8US+LbjMjCRqazWUkVwQzbYq4FXjs7QYeiHx9Mo7jVacnjqyFMaWTx8czQo7QYSfbL5+YxJJR/iuHBrLIdR1L5MHa8S3VE3I5U5wrAEoCcqtc8HRmOwX2vhEDMRzz/jmrmyQ4l4EliCTG6fQV8aOfljj3zgvPahaTf9lfx1AjhD+x2ZjgjamLtYdNAUIYgMo3wo+qjh6QUA8gxcGoUv6d3Q8INBAJgiNLGSscs/omdU4EZ+l+3QUgQzfBmKltxuW472+tEbRkucR7Myci/UacdLhs38xGcnpaKh68J/SQ3q9jqKi8coGSQFOTNoHVcVVk/XmvpP+Hd6YMOfwmWdiSzhCEM70zWd7jXNK/PDfpXgncQf7GRTgxxGE9CejERaoScy+hypGWhtNARwZCpJk/joEWRd5gQDOqZS7uTgXRxgUkhgngiYAkGqTwW/x2iItXeU/A03vazLK8wch2/cz04Gh8RPQIWDK0n3APNY/OuoqzxYfIEaORwZh8PpGJsxGWI5sqTMKVuI3EndQj32SbWMry2vCixuDz6mYUkzyCmCUtkxWvGaS1iotIl7fHGL/kvOJSPI3te/Kc3SAGRHYaYSkYvi3D15/6Z/yw12vJWy3Q6XwlYvgYiTJuBUtOXanvvckXwzBAEA9gqiYovF5Ebs3CLbeFkBaD8dj9g2PpWr39qVRwUCqMRz7RF/g1+r638NfoVnLG7/QKppsfaC5b404jIUHfKqH6m55T6ivwhV102c0wwulmsdT9O2/BlhB1eUpJD5t5J3x475zeP4ReC5EH/2/wy3nc+cx+CdsPtyufpNj3nCTq0REB455OthLRLWRMj7iUwQnsodQvzqEvfOKsZPfV0DXbdvH9QDrte2jIyMCV2SKcw2idwaETghfMl34ifAXWkqsD0gFNLhtdwsFwaHMHGaI87AewmzxHptqcQiiLQkPnlRDHy7k8SPxasD4K05tC8nEQHzDnREPdkEncYqztF39l0nEtaxxphDWmFWGfcZZgfM8rEz+mIBOMGjmZL098i8so7ZxRmeNlizElMCMGCSqGSIb3DQEJFTEWBBRu6e5XeVt2l1MEKSdEQ+zgY8oXzTAxMCEwCQYFKw4DAhoFAAQUESCBobdy+D6h9P96kWPsxzgJ78wECHPJpxxkog9ZAgIIAA==", "rentalAndLeaseKeyType": "Undefined", "rentalDuration": 60}, "restriction": - {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -286,8 +81,8 @@ interactions: - -a -n -g --open-restriction --description --ask --fair-play-pfx --fair-play-pfx-password --rental-and-lease-key-type --rental-duration --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -295,20 +90,20 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"e0eee2f2-ebc2-4bdc-98a1-869245527290\",\"created\":\"2019-06-13T22:52:05.967Z\",\"lastModified\":\"2019-06-13T22:52:05.967Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"fc3e1248-373e-4161-8e44-16ed4a08c677\",\"name\":\"pon000005\",\"configuration\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"rentalAndLeaseKeyType\":\"Undefined\",\"rentalDuration\":60\r\n + \ \"policyId\":\"7208a994-a388-4671-a2f6-9b25f095284d\",\"created\":\"2020-05-08T18:50:04.82Z\",\"lastModified\":\"2020-05-08T18:50:04.82Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"c1776b21-be6d-4f19-b4a7-3be35984fd20\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"Undefined\",\"rentalDuration\":60\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '905' + - '960' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:06 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -316,67 +111,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTNldSTVFWVEJYWDY2SllMTkhLM1lMN1ZNVFlMWU9OMks2UXxDRDY2NDU4NkIwNEYwREIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml new file mode 100644 index 00000000000..2b96035fc65 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml @@ -0,0 +1,131 @@ +interactions: +- request: + body: 'b''b\''{"location": "eastasia", "properties": {"storageAccounts": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}]}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account create + Connection: + - keep-alive + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --storage-account -l + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + response: + body: + string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"7ad602aa-6072-4f7c-a155-b0f42919e4e9\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 08 May 2020 18:50:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": + "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration", + "ask": "EjRWeJCrze8SNFZ4kKvN7w==", "fairPlayPfxPassword": "password", "fairPlayPfx": + "MIIKiQIBAzCCCk8GCSqGSIb3DQEHAaCCCkAEggo8MIIKODCCBO8GCSqGSIb3DQEHBqCCBOAwggTcAgEAMIIE1QYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIpWxHMQn3nwMCAggAgIIEqOPQ4cNTz/41hY7gS1uVf46gL7kB9BNecRpprnR2uOMoWlB8I8K3GiXAzNJyX8ry9P+HHBQoGrP1klaRsUFjiVGoGLOXWaZP2N201J1ARVfo3nm6dVm3H4gkIrsuKL9O7vKr1GSZsyFpcb7j738O4cw4W5o70pozFFLw8/2ecD2Zdq+9StN8Bf/mnPSC97Qtp0K70gT6STh9UuFEObjg+3TDjiCveqsHTLTxjdUdMMFgunl5siJ0UOnIUh9P2v9fbQwXGh5s1uE18dq4P625m8msh3nQ8RRXoC9PnL1/m2TDpWwanox5P3EaA1aQMORleS6a3BoSjyegBW6ZrA581Fa62I+WXseZ/o/CCWqw5u2fMWMsfTyUzuyEAG3hyaJan+Lq8LOfDf7ZKw2dC1IWRaQF8DNRlrf658ELeIwzydXTLsI3Rv2zhNPmQa4yTpy/FpQZtHomlSvQTZy0s7hA9JwsxQInRAtv+3Auwp5m7hofrXJyOWCrGThcN17rYDVh+vCJFxGUeWOBZ4bF7Blv95PKSNuaXYdb5XsYY+DZ7WnU0Tkdk0r1W0ZThjrUOnGG0rCClSGOKruyvmymhTQXnL8hzXjvvdbjm/nmUnZOOrr5k4gunD817MmqGmvVxxdAcdtipx6vUeJMgj40b/MU9z75ygHFZEYAtvMwh/Qtl3Qv01HyOHGDH7sT53KggcU+0IcAMCFkZOx6ZY62WjEtZeoGeaA7xbSTbLL32X9vPBC8s6l2KAJCRy7FLXT8VSpX/C+YM2w97YpCSJ0qtRqcj/U3OuazdupN/62CvnesYRk7d7W764nyTiHiPI6SrkdqBV65XiJfOalE1A0OFJlaUD+a0VBFRZa+9WffFXuUmrd0LIXSLlEJWNJtQGKk/5iNjjA5bcxZ69DTuvX3EihbzUQOLz5dAMG/FuKvjAcxJd2u0ioGFKCJeRIS9NtSXzVytaVv7f6FVEjLArER0lskvI6FnpZmOtUXaoBAlvlsHaN0sY+787dcdLs4HRm3HxLoxbLl1ygZtSEi2AL+o9PA/cGh3KdpoJz/QSoF7c40ABSZ+QbJ+PefS7ncTy0dHjch8gQbXARKn20ROdspbEGW7CGyxl6ipOTwkhi/HhBeFhKk4ofwu/Tmh6Q75QoxJDHp7BMCI4Z5+hvZZ6DmeybxonyNvpwdxR1DIScA0X4mkZSyJECRpOGIZZxKUhd3Uxv7UREgOs/xiCgdUoRUpoOunqROpgSb/WmjOtFVYyVh03emEnfZoaEyCNB1Dk5NzstdtWZhbvmZQBZv7xkcFw65SoEAsPgPfR7LIqN5sJcUY1KSUgvZXalb2qkEST8NB5IImxPr/GBxygo6FE/f21wfPpwNDUIvYBtBQmDlJpLVz8n6CExl5EEIi612is1vusvCEXf3m83SLJmJn77b2lqyaZjhs0UW00B8kVEfpSOndW/P1/D7HvrSCWsnPsqJF66BUHxdI9V89Coo7suMiOlL0PMUI3D3I5l5UKO3JkOFxJQwBy/GPTkcYKF6MlQdnhH62p3AnIynBbQw3nebBP5wT3WGCbDIRFMBtm9ramYg4KTP7qjQwPoKbRcwggVBBgkqhkiG9w0BBwGgggUyBIIFLjCCBSowggUmBgsqhkiG9w0BDAoBAqCCBO4wggTqMBwGCiqGSIb3DQEMAQMwDgQIcHIlDzfEz0wCAggABIIEyMsmW+kFfagAyQQ2z9kBF/LyvpePCVMWq4eDT09zQ6M978RBuDXMOIUz6ylfzx+JgLuwEfYTifac35NyexKxJjCWj8H0U+xwG6NoSL9bfgmv3O2EkUx/G7OLaShr8/S7Aq7rtbLVDxXMv8qO11g6td0JDSx1CN5Ibtyo2YZqpadlOSlL+qHa1BzxFfpX+Ef9pE2Gs25D4icMqskaA0M78Qst7usPqMM4YVIA94HZvBxvu07LbZJF9gFB0x6nIQDZEJSmCObFdyiTuVhDTbea2JKgERauuodkniSGU+U6++iQ70mV7cQcBy5tP5m/CiXmFmp+UnOHKN5TK7t1e6nGq+KPLkqBaH33XUX+xdy2PsTv12+4oetKLEBVumQDTvLFOUth/CzRfWseAk/CSX7H1XC9KlW9XfULNKFQ5G7Bguk9RrS/Sf94OOO8fZRLICMN/Q8MnIz+x5QIT2wXfspFs0x0DWPSpFUUXAlVpt4XLhOmsvcfRm3GMRetvGzSb3IgdtSyGekzs+nmDYAGQJKrYCKTpsRRlKt3e/My8nsKfVh4Pa9vPQgHU/KaxDeSKIsTRe0Hy2t9WMF8US+LbjMjCRqazWUkVwQzbYq4FXjs7QYeiHx9Mo7jVacnjqyFMaWTx8czQo7QYSfbL5+YxJJR/iuHBrLIdR1L5MHa8S3VE3I5U5wrAEoCcqtc8HRmOwX2vhEDMRzz/jmrmyQ4l4EliCTG6fQV8aOfljj3zgvPahaTf9lfx1AjhD+x2ZjgjamLtYdNAUIYgMo3wo+qjh6QUA8gxcGoUv6d3Q8INBAJgiNLGSscs/omdU4EZ+l+3QUgQzfBmKltxuW472+tEbRkucR7Myci/UacdLhs38xGcnpaKh68J/SQ3q9jqKi8coGSQFOTNoHVcVVk/XmvpP+Hd6YMOfwmWdiSzhCEM70zWd7jXNK/PDfpXgncQf7GRTgxxGE9CejERaoScy+hypGWhtNARwZCpJk/joEWRd5gQDOqZS7uTgXRxgUkhgngiYAkGqTwW/x2iItXeU/A03vazLK8wch2/cz04Gh8RPQIWDK0n3APNY/OuoqzxYfIEaORwZh8PpGJsxGWI5sqTMKVuI3EndQj32SbWMry2vCixuDz6mYUkzyCmCUtkxWvGaS1iotIl7fHGL/kvOJSPI3te/Kc3SAGRHYaYSkYvi3D15/6Z/yw12vJWy3Q6XwlYvgYiTJuBUtOXanvvckXwzBAEA9gqiYovF5Ebs3CLbeFkBaD8dj9g2PpWr39qVRwUCqMRz7RF/g1+r638NfoVnLG7/QKppsfaC5b404jIUHfKqH6m55T6ivwhV102c0wwulmsdT9O2/BlhB1eUpJD5t5J3x475zeP4ReC5EH/2/wy3nc+cx+CdsPtyufpNj3nCTq0REB455OthLRLWRMj7iUwQnsodQvzqEvfOKsZPfV0DXbdvH9QDrte2jIyMCV2SKcw2idwaETghfMl34ifAXWkqsD0gFNLhtdwsFwaHMHGaI87AewmzxHptqcQiiLQkPnlRDHy7k8SPxasD4K05tC8nEQHzDnREPdkEncYqztF39l0nEtaxxphDWmFWGfcZZgfM8rEz+mIBOMGjmZL098i8so7ZxRmeNlizElMCMGCSqGSIb3DQEJFTEWBBRu6e5XeVt2l1MEKSdEQ+zgY8oXzTAxMCEwCQYFKw4DAhoFAAQUESCBobdy+D6h9P96kWPsxzgJ78wECHPJpxxkog9ZAgIIAA==", + "rentalAndLeaseKeyType": "DualExpiry", "rentalDuration": 60, "offlineRentalConfiguration": + {"playbackDurationSeconds": 60, "storageDurationSeconds": 60}}, "restriction": + {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams content-key-policy create + Connection: + - keep-alive + Content-Length: + - '4115' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -a -n -g --open-restriction --description --ask --fair-play-pfx --fair-play-pfx-password + --rental-and-lease-key-type --fp-playback-duration-seconds --fp-storage-duration-seconds + --rental-duration --policy-option-name + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + response: + body: + string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n + \ \"policyId\":\"07c6c0d0-b038-4dc4-8480-12965700ebe7\",\"created\":\"2020-05-08T18:50:04.66Z\",\"lastModified\":\"2020-05-08T18:50:04.66Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"f92def0a-8f56-4e05-944a-9f0f541a8518\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"DualExpiry\",\"rentalDuration\":0,\"offlineRentalConfiguration\":{\r\n + \ \"playbackDurationSeconds\":60,\"storageDurationSeconds\":60\r\n + \ }\r\n },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n + \ }\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1074' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 08 May 2020 18:50:04 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml index 0622458a3ae..8ca73b532b1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:59Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:59Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/62e5f5f2-2cf4-496e-a451-0911b7fa9ee8?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/62e5f5f2-2cf4-496e-a451-0911b7fa9ee8?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:01.8378183Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:01.8378183Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:01.5565545Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "japanwest", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"f8ec1877-b439-46a7-aace-c5684b718136\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"c09ebcc3-3cc8-4270-84ae-95d1d96cd87b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:22 GMT + - Fri, 08 May 2020 18:50:03 GMT expires: - '-1' odata-version: @@ -250,63 +47,14 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKNVlGRkpWTDNUTEg3Tk9WRVdMN1pEU01WM1lPQ0QyRlJGSXxCMUI5Rjg1QTU0QkQxRUUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml index 131d1ad7122..1144effbacf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:35Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:35Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/07e2126b-5395-4819-bca7-3f08032d862c?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/07e2126b-5395-4819-bca7-3f08032d862c?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:37.0065887Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:37.0065887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:36.8503232Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "japaneast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"c8cdb1d0-917d-4f25-93bb-18e05b536b93\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"fa492c88-e182-48c4-a12f-fb990d88e9b2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:51:56 GMT + - Fri, 08 May 2020 18:50:03 GMT expires: - '-1' odata-version: @@ -250,20 +47,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration", "licenses": [{"allowTestDevices": true, "expirationDate": "2098-09-15T18:53:00.000Z", "relativeBeginDate": "PT1H1M1S", "gracePeriod": "PT2H2M2S", "playRight": {"firstPlayExpiration": @@ -275,7 +70,7 @@ interactions: 300, "uncompressedDigitalAudioOpl": 300}, "licenseType": "Persistent", "contentKeyLocation": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier", "keyId": "12345678-aaaa-bbbb-cccc-ddddeeeeffff"}, "contentType": "Unspecified"}], - "responseCustomData": "custom data"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + "responseCustomData": "custom data"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -292,8 +87,8 @@ interactions: ParameterSetName: - -a -n -g --open-restriction --play-ready-template --description --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -301,8 +96,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"ed9ba577-21cc-482f-903a-098a8f3f6e32\",\"created\":\"2019-06-13T22:51:58.94Z\",\"lastModified\":\"2019-06-13T22:51:58.94Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"e7c73ea5-a895-4a95-b5ac-3907d009c203\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"8787ae75-503b-45bf-bdd4-de0cc3f88941\",\"created\":\"2020-05-08T18:50:05.787Z\",\"lastModified\":\"2020-05-08T18:50:05.787Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"7347a172-24f8-4a56-9288-c92825864d30\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -316,11 +111,11 @@ interactions: cache-control: - no-cache content-length: - - '1949' + - '1951' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:51:59 GMT + - Fri, 08 May 2020 18:50:05 GMT expires: - '-1' odata-version: @@ -328,67 +123,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:51:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczT0xXR1NEUVVMUlRGUDI0SUUzUVFEWUhTSFY3RUQ3RDJMUnw4MjZBN0ZDNEQxN0M3RTkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml index e27454274e3..4e027811d66 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:39Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:39Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/480bc273-2813-4fc5-b5d8-67607a7ab5e1?monitor=true&api-version=2019-04-01 - 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 - 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: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/480bc273-2813-4fc5-b5d8-67607a7ab5e1?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:41.7097672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:41.7097672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:41.5534652Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:51:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "southeastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"abb71747-8176-4742-b8d6-c17f4cae9d69\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"8baeefed-d424-41aa-a650-55d3d8763962\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:03 GMT + - Fri, 08 May 2020 18:50:03 GMT expires: - '-1' odata-version: @@ -250,22 +47,20 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.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 + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyWidevineConfiguration", - "widevineTemplate": "{\\r\\n \\"allowed_track_types\\":\\"SD_HD\\",\\r\\n \\"content_key_specs\\":[\\r\\n {\\r\\n \\"track_type\\":\\"SD\\",\\r\\n \\"security_level\\":1,\\r\\n \\"required_output_protection\\":{\\r\\n \\"hdcp\\":\\"HDCP_V2\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\"policy_overrides\\":{\\r\\n \\"can_play\\":true,\\r\\n \\"can_persist\\":true,\\r\\n \\"can_renew\\":false\\r\\n }\\r\\n}"}, + "widevineTemplate": "{\r\n \"allowed_track_types\":\"SD_HD\",\r\n \"content_key_specs\":[\r\n {\r\n \"track_type\":\"SD\",\r\n \"security_level\":1,\r\n \"required_output_protection\":{\r\n \"hdcp\":\"HDCP_V2\"\r\n }\r\n }\r\n ],\r\n \"policy_overrides\":{\r\n \"can_play\":true,\r\n \"can_persist\":true,\r\n \"can_renew\":false\r\n }\r\n}"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyTokenRestriction", "issuer": "Issuer", "audience": "Audience", "primaryVerificationKey": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyRsaTokenKey", "exponent": "AQAB", "modulus": @@ -273,7 +68,7 @@ interactions: "alternateVerificationKeys": [], "requiredClaims": [{"claimType": "foo", "claimValue": "baz"}, {"claimType": "baz", "claimValue": "doo"}, {"claimType": "fus", "claimValue": "rodahh"}], "restrictionTokenType": "Jwt", "openIdConnectDiscoveryDocument": - "adocument"}}]}}''' + "adocument"}}]}}' headers: Accept: - application/json @@ -291,8 +86,8 @@ interactions: - -a -n -g --description --issuer --audience --token-key --token-key-type --token-type --widevine-template --token-claims --open-id-connect-discovery-document --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -300,8 +95,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"fc9c2b0b-5bc5-4ef7-bce7-e16bac5e1578\",\"created\":\"2019-06-13T22:52:05.457Z\",\"lastModified\":\"2019-06-13T22:52:05.457Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"2c4f7fe2-01d0-4bef-af67-0b2a5fa00657\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"68f6f010-3028-42f2-bc10-8f448be06d81\",\"created\":\"2020-05-08T18:50:04.993Z\",\"lastModified\":\"2020-05-08T18:50:04.993Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"15307cbf-7721-4188-9379-1a0f5d3307e0\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -309,7 +104,7 @@ interactions: \ }\\r\\n }\\r\\n ],\\r\\n \\\"policy_overrides\\\":{\\r\\n \ \\\"can_play\\\":true,\\r\\n \\\"can_persist\\\":true,\\r\\n \\\"can_renew\\\":false\\r\\n \ }\\r\\n}\"\r\n },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"Issuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyRsaTokenKey\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyRsaTokenKey\",\"exponent\":null,\"modulus\":null\r\n \ },\"alternateVerificationKeys\":[\r\n \r\n ],\"requiredClaims\":[\r\n \ {\r\n \"claimType\":\"foo\",\"claimValue\":\"baz\"\r\n \ },{\r\n \"claimType\":\"baz\",\"claimValue\":\"doo\"\r\n @@ -320,11 +115,11 @@ interactions: cache-control: - no-cache content-length: - - '1809' + - '1840' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:05 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -332,67 +127,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRTE5ITzYyTElKT0VGNEFHTklKWTM3WlhPVzVUTFFXUzREUXw4QzMyMzM3MEI3M0Q5Qjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml index ab1eee6979d..41f6b20aa5f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:49Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:49 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: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3e800d-f6ac-41a6-9b4a-61537eb7359b?monitor=true&api-version=2019-04-01 - 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 - 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: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3e800d-f6ac-41a6-9b4a-61537eb7359b?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:51.2254725Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:51.2254725Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:51.0692008Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"27732a09-e6f7-4e9e-8d16-aad685d2602f\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"1e4add61-0099-4673-bee8-18c84d7e1b45\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:11 GMT + - Fri, 08 May 2020 18:50:00 GMT expires: - '-1' odata-version: @@ -250,23 +47,21 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyWidevineConfiguration", - "widevineTemplate": "{\\r\\n \\"allowed_track_types\\":\\"SD_HD\\",\\r\\n \\"content_key_specs\\":[\\r\\n {\\r\\n \\"track_type\\":\\"SD\\",\\r\\n \\"security_level\\":1,\\r\\n \\"required_output_protection\\":{\\r\\n \\"hdcp\\":\\"HDCP_V2\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\"policy_overrides\\":{\\r\\n \\"can_play\\":true,\\r\\n \\"can_persist\\":true,\\r\\n \\"can_renew\\":false\\r\\n }\\r\\n}"}, - "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + "widevineTemplate": "{\r\n \"allowed_track_types\":\"SD_HD\",\r\n \"content_key_specs\":[\r\n {\r\n \"track_type\":\"SD\",\r\n \"security_level\":1,\r\n \"required_output_protection\":{\r\n \"hdcp\":\"HDCP_V2\"\r\n }\r\n }\r\n ],\r\n \"policy_overrides\":{\r\n \"can_play\":true,\r\n \"can_persist\":true,\r\n \"can_renew\":false\r\n }\r\n}"}, + "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -283,8 +78,8 @@ interactions: ParameterSetName: - -a -n -g --description --widevine-template --open-restriction --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -292,8 +87,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"faffce9c-9338-429d-8690-839a0ece8e38\",\"created\":\"2019-06-13T22:52:12.607Z\",\"lastModified\":\"2019-06-13T22:52:12.607Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"aa6df2f5-71c4-4ec9-a62e-bc5dea0d2136\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"291304b8-06d6-4975-8b88-944421cc6fea\",\"created\":\"2020-05-08T18:50:02.563Z\",\"lastModified\":\"2020-05-08T18:50:02.563Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"35c05749-ceca-439d-8393-efef3667ea49\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -310,7 +105,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:12 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -318,67 +113,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc0NDU0QUlOREJTU1MyTFlDWTRKNENQVzQ2R1k3Q0FENTNTQXwzMUYzNTNBQjU4NTAwQTM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml index d3b7fcb819b..06de07a1915 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:46Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:47 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: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3ae717de-c66e-4208-963e-878a657c845e?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3ae717de-c66e-4208-963e-878a657c845e?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:48.3660870Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:48.3660870Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:48.2098434Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "eastus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"2f0b5305-25a9-46f3-9909-4efb63043e14\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"d13c45b9-1f5b-4eb2-8d5f-b37218a890c7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:08 GMT + - Fri, 08 May 2020 18:50:01 GMT expires: - '-1' odata-version: @@ -250,22 +47,20 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.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 + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, - "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -282,8 +77,8 @@ interactions: ParameterSetName: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -291,8 +86,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"23fc8e9d-0441-4743-91b7-1670b65ae948\",\"created\":\"2019-06-13T22:52:10.67Z\",\"lastModified\":\"2019-06-13T22:52:10.67Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"475453eb-8145-4884-ad92-fac04ef97274\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"cd2deb08-c75b-4b92-ae34-6c7e2332ec01\",\"created\":\"2020-05-08T18:50:02.257Z\",\"lastModified\":\"2020-05-08T18:50:02.257Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"4e2c117a-2180-4deb-a9d4-2dd1880e82df\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -300,11 +95,11 @@ interactions: cache-control: - no-cache content-length: - - '847' + - '849' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:10 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -312,19 +107,17 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -342,8 +135,8 @@ interactions: ParameterSetName: - -a -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -351,8 +144,8 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"23fc8e9d-0441-4743-91b7-1670b65ae948\",\"created\":\"2019-06-13T22:52:10.67Z\",\"lastModified\":\"2019-06-13T22:52:10.67Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"475453eb-8145-4884-ad92-fac04ef97274\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"cd2deb08-c75b-4b92-ae34-6c7e2332ec01\",\"created\":\"2020-05-08T18:50:02.257Z\",\"lastModified\":\"2020-05-08T18:50:02.257Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"4e2c117a-2180-4deb-a9d4-2dd1880e82df\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" @@ -360,11 +153,11 @@ interactions: cache-control: - no-cache content-length: - - '923' + - '925' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:11 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -372,17 +165,15 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -402,8 +193,8 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -417,21 +208,19 @@ interactions: content-length: - '0' date: - - Thu, 13 Jun 2019 22:52:12 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.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 + - '14999' status: code: 200 message: OK @@ -449,8 +238,8 @@ interactions: ParameterSetName: - -a -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -466,7 +255,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:13 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -474,65 +263,16 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding 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: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdONUk0VUNBMzZXMk1ZV1ROUEdDSUhJTzJCQldKWEZYRkZCNHw0NDAwOTBERjBERUNBMDBELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml index 6b41737fadc..c2c206a4f4e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:51:42Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:51:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:51:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fdf3e241-79ba-4f91-9407-728576f7822f?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fdf3e241-79ba-4f91-9407-728576f7822f?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:44.9753944Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:51:44.9753944Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:51:44.8035485Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"5f23cb9f-92fa-461d-b120-c48655768564\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"0d7f854a-07e8-4f25-8d6d-beae07413681\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:06 GMT + - Fri, 08 May 2020 18:50:00 GMT expires: - '-1' odata-version: @@ -250,22 +47,20 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.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 + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "ExampleDescription", "options": [{"name": + body: '{"properties": {"description": "ExampleDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, - "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}''' + "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"}}]}}' headers: Accept: - application/json @@ -282,8 +77,8 @@ interactions: ParameterSetName: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -291,8 +86,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"40f6bfea-0d8c-4021-b8e2-2558b5ab3cac\",\"created\":\"2019-06-13T22:52:08.057Z\",\"lastModified\":\"2019-06-13T22:52:08.057Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"e2c5da6e-3c7b-4b56-ae4f-7fb5c8c88426\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"9c653979-68c9-40b5-8f4a-8f6d3a2d2f5a\",\"created\":\"2020-05-08T18:50:02.543Z\",\"lastModified\":\"2020-05-08T18:50:02.543Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"83120988-9fd5-4203-9c2f-81eb672e94b9\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -304,7 +99,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:08 GMT + - Fri, 08 May 2020 18:50:01 GMT expires: - '-1' odata-version: @@ -312,19 +107,17 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -342,8 +135,8 @@ interactions: ParameterSetName: - -a -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -351,8 +144,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"40f6bfea-0d8c-4021-b8e2-2558b5ab3cac\",\"created\":\"2019-06-13T22:52:08.057Z\",\"lastModified\":\"2019-06-13T22:52:08.057Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"e2c5da6e-3c7b-4b56-ae4f-7fb5c8c88426\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"9c653979-68c9-40b5-8f4a-8f6d3a2d2f5a\",\"created\":\"2020-05-08T18:50:02.543Z\",\"lastModified\":\"2020-05-08T18:50:02.543Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"83120988-9fd5-4203-9c2f-81eb672e94b9\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -364,7 +157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:08 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -372,65 +165,16 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding 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: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHVjJQNEJPNDI2R1JKQlpQRk5TN05UNzNSSDNLNUlVSVVSUHwzODgzRTAzMDgyNEI5MzMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml index a4a6fc753b5..fa200988999 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:52:09Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:52:09Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/937b94de-55cc-487c-80aa-8205600e6066?monitor=true&api-version=2019-04-01 - 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 - 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: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/937b94de-55cc-487c-80aa-8205600e6066?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:11.4796296Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:11.4796296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:11.2609094Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "canadaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - East\",\"properties\":{\r\n \"mediaServiceId\":\"99fe3967-63cb-4f5d-8bd7-01e7bbacafeb\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"cc4ad669-918a-490d-9a5f-9d8dee85dc78\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:32 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -250,26 +47,24 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"options": [{"name": "pon000005", "configuration": {"@odata.type": + body: '{"properties": {"options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyTokenRestriction", "issuer": "issuer", "audience": "audience", "primaryVerificationKey": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey", "rawBody": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNFakNDQVhzQ0FnMzZNQTBHQ1NxR1NJYjNEUUVCQlFVQU1JR2JNUXN3Q1FZRFZRUUdFd0pLVURFT01Bd0cKQTFVRUNCTUZWRzlyZVc4eEVEQU9CZ05WQkFjVEIwTm9kVzh0YTNVeEVUQVBCZ05WQkFvVENFWnlZVzVyTkVSRQpNUmd3RmdZRFZRUUxFdzlYWldKRFpYSjBJRk4xY0hCdmNuUXhHREFXQmdOVkJBTVREMFp5WVc1ck5FUkVJRmRsCllpQkRRVEVqTUNFR0NTcUdTSWIzRFFFSkFSWVVjM1Z3Y0c5eWRFQm1jbUZ1YXpSa1pDNWpiMjB3SGhjTk1USXcKT0RJeU1EVXlOalUwV2hjTk1UY3dPREl4TURVeU5qVTBXakJLTVFzd0NRWURWUVFHRXdKS1VERU9NQXdHQTFVRQpDQXdGVkc5cmVXOHhFVEFQQmdOVkJBb01DRVp5WVc1ck5FUkVNUmd3RmdZRFZRUUREQTkzZDNjdVpYaGhiWEJzClpTNWpiMjB3WERBTkJna3Foa2lHOXcwQkFRRUZBQU5MQURCSUFrRUFtL3hta0htRVFydXJFLzByZS9qZUZSTGwKOFpQakJvcDd1TEhobmlhN2xRRy81ekR0WklVQzNSVnBxRFN3QnV3L05Ud2VHeXVQK284QUc5OEh4cXhUQndJRApBUUFCTUEwR0NTcUdTSWIzRFFFQkJRVUFBNEdCQUJTMlRMdUJlVFBtY2FUYVVXL0xDQjJOWU95OEdNZHpSMW14CjhpQkl1Mkg2L0UydGlZM1JJZXZWMk9XNjFxWTIvWFJRZzdZUHh4M2ZmZVV1Z1g5RjRKL2lQbm51MXpBeHh5QnkKMlZndUt2NFNXalJGb1JrSWZJbEhYMHFWdmlNaFNsTnkyaW9GTHk3SmNQWmIrdjNmdERHeXdVcWNCaVZEb2VhMApIbitHbXhaQQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}, "alternateVerificationKeys": [], "requiredClaims": [], "restrictionTokenType": - "Jwt"}}]}}''' + "Jwt"}}]}}' headers: Accept: - application/json @@ -287,8 +82,8 @@ interactions: - -a -g -n --clear-key-configuration --policy-option-name --token-key --token-key-type --issuer --audience --token-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -296,11 +91,11 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"f0918551-93dd-4d5e-9c1d-709e45bcfe40\",\"created\":\"2019-06-13T22:52:34.117Z\",\"lastModified\":\"2019-06-13T22:52:34.117Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4dea0109-5459-4adc-8700-c94b818805e8\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"796c8535-4e2e-45a9-907f-cb6e6b6196b8\",\"created\":\"2020-05-08T18:50:04.227Z\",\"lastModified\":\"2020-05-08T18:50:04.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d11a1687-0b61-4bb4-8901-11ae376b4810\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n \ },\"alternateVerificationKeys\":[\r\n \r\n ],\"requiredClaims\":[\r\n \ \r\n ],\"restrictionTokenType\":\"Jwt\"\r\n }\r\n \ }\r\n ]\r\n }\r\n}" @@ -308,11 +103,11 @@ interactions: cache-control: - no-cache content-length: - - '1113' + - '1128' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:34 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -320,19 +115,17 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -350,8 +143,8 @@ interactions: ParameterSetName: - -a -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -359,11 +152,11 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"f0918551-93dd-4d5e-9c1d-709e45bcfe40\",\"created\":\"2019-06-13T22:52:34.117Z\",\"lastModified\":\"2019-06-13T22:52:34.117Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4dea0109-5459-4adc-8700-c94b818805e8\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"796c8535-4e2e-45a9-907f-cb6e6b6196b8\",\"created\":\"2020-05-08T18:50:04.227Z\",\"lastModified\":\"2020-05-08T18:50:04.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d11a1687-0b61-4bb4-8901-11ae376b4810\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n \ },\"alternateVerificationKeys\":[\r\n \r\n ],\"requiredClaims\":[\r\n \ \r\n ],\"restrictionTokenType\":\"Jwt\"\r\n }\r\n \ }\r\n ]\r\n }\r\n}" @@ -371,11 +164,11 @@ interactions: cache-control: - no-cache content-length: - - '1113' + - '1128' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:35 GMT + - Fri, 08 May 2020 18:50:04 GMT expires: - '-1' odata-version: @@ -383,17 +176,15 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -413,16 +204,16 @@ interactions: ParameterSetName: - -a -n -g --with-secrets User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2018-07-01 response: body: - string: "{\r\n \"policyId\":\"f0918551-93dd-4d5e-9c1d-709e45bcfe40\",\"created\":\"2019-06-13T22:52:34.117Z\",\"lastModified\":\"2019-06-13T22:52:34.117Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4dea0109-5459-4adc-8700-c94b818805e8\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"796c8535-4e2e-45a9-907f-cb6e6b6196b8\",\"created\":\"2020-05-08T18:50:04.227Z\",\"lastModified\":\"2020-05-08T18:50:04.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d11a1687-0b61-4bb4-8901-11ae376b4810\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":\"MIICEjCCAXsCAg36MA0GCSqGSIb3DQEBBQUAMIGbMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEDAOBgNVBAcTB0NodW8ta3UxETAPBgNVBAoTCEZyYW5rNEREMRgwFgYDVQQLEw9XZWJDZXJ0IFN1cHBvcnQxGDAWBgNVBAMTD0ZyYW5rNEREIFdlYiBDQTEjMCEGCSqGSIb3DQEJARYUc3VwcG9ydEBmcmFuazRkZC5jb20wHhcNMTIwODIyMDUyNjU0WhcNMTcwODIxMDUyNjU0WjBKMQswCQYDVQQGEwJKUDEOMAwGA1UECAwFVG9reW8xETAPBgNVBAoMCEZyYW5rNEREMRgwFgYDVQQDDA93d3cuZXhhbXBsZS5jb20wXDANBgkqhkiG9w0BAQEFAANLADBIAkEAm/xmkHmEQrurE/0re/jeFRLl8ZPjBop7uLHhnia7lQG/5zDtZIUC3RVpqDSwBuw/NTweGyuP+o8AG98HxqxTBwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBABS2TLuBeTPmcaTaUW/LCB2NYOy8GMdzR1mx8iBIu2H6/E2tiY3RIevV2OW61qY2/XRQg7YPxx3ffeUugX9F4J/iPnnu1zAxxyBy2VguKv4SWjRFoRkIfIlHX0qVviMhSlNy2ioFLy7JcPZb+v3ftDGywUqcBiVDoea0Hn+GmxZA\"\r\n @@ -437,7 +228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:36 GMT + - Fri, 08 May 2020 18:50:05 GMT expires: - '-1' odata-version: @@ -445,67 +236,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczTkgzQzYyQzZOU080NkNNU0lJSllMM1AyNVpISFpJM05QUHxFODIzOTlCQzA5QkZCQ0FBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml index 33545150c2f..4dbe621cfc5 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-13T22:52:05Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-13T22:52:05Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 13 Jun 2019 22:52:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7c1ae5b6-5d87-4914-87fd-4bae4c233218?monitor=true&api-version=2019-04-01 - 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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7c1ae5b6-5d87-4914-87fd-4bae4c233218?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"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":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:06.3691401Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:06.3691401Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:06.1972410Z","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '1227' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 13 Jun 2019 22:52:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK - request: body: 'b''b\''{"location": "australiaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", @@ -222,8 +19,8 @@ interactions: ParameterSetName: - -n -g --storage-account -l User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -231,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"abc58432-ce74-4aaa-a542-7e6a4320e9e9\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"564faa08-0b1b-403a-a94a-7a81105bb6aa\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -242,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:27 GMT + - Fri, 08 May 2020 18:50:02 GMT expires: - '-1' odata-version: @@ -250,20 +47,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 201 message: Created - request: - body: 'b''{"properties": {"description": "AnotherDescription", "options": [{"name": + body: '{"properties": {"description": "AnotherDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyTokenRestriction", "issuer": "AnotherIssuer", "audience": "Audience", "primaryVerificationKey": @@ -271,7 +66,7 @@ interactions: "YTFiMmMzZDRlNWY2ZzdoOGk5ajA="}, "alternateVerificationKeys": [], "requiredClaims": [{"claimType": "foo", "claimValue": "baz"}, {"claimType": "baz", "claimValue": "doo"}, {"claimType": "fus", "claimValue": "rodahh"}], "restrictionTokenType": - "Jwt", "openIdConnectDiscoveryDocument": "adocument"}}]}}''' + "Jwt", "openIdConnectDiscoveryDocument": "adocument"}}]}}' headers: Accept: - application/json @@ -290,8 +85,8 @@ interactions: --token-key-type --token-type --token-claims --open-id-connect-discovery-document --policy-option-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -299,11 +94,11 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"bd752f15-fb81-4141-9e8e-6691d1710f4b\",\"created\":\"2019-06-13T22:52:28.463Z\",\"lastModified\":\"2019-06-13T22:52:28.463Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"0d5ebd24-04c2-4649-9bec-c130570fbc5b\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"0f5bd970-a645-4f0d-841c-c21a71dd9aea\",\"created\":\"2020-05-08T18:50:03.633Z\",\"lastModified\":\"2020-05-08T18:50:03.633Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"76a9d527-2afb-465d-9c11-0e37e8e1551d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n \ },\"alternateVerificationKeys\":[\r\n \r\n ],\"requiredClaims\":[\r\n \ {\r\n \"claimType\":\"foo\",\"claimValue\":\"baz\"\r\n \ },{\r\n \"claimType\":\"baz\",\"claimValue\":\"doo\"\r\n @@ -314,11 +109,11 @@ interactions: cache-control: - no-cache content-length: - - '1403' + - '1419' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:28 GMT + - Fri, 08 May 2020 18:50:03 GMT expires: - '-1' odata-version: @@ -326,19 +121,17 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK @@ -358,16 +151,16 @@ interactions: ParameterSetName: - -a -n -g --description --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2018-07-01 response: body: - string: "{\r\n \"policyId\":\"bd752f15-fb81-4141-9e8e-6691d1710f4b\",\"created\":\"2019-06-13T22:52:28.463Z\",\"lastModified\":\"2019-06-13T22:52:28.463Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"0d5ebd24-04c2-4649-9bec-c130570fbc5b\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"0f5bd970-a645-4f0d-841c-c21a71dd9aea\",\"created\":\"2020-05-08T18:50:03.633Z\",\"lastModified\":\"2020-05-08T18:50:03.633Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"76a9d527-2afb-465d-9c11-0e37e8e1551d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":\"YTFiMmMzZDRlNWY2ZzdoOGk5ajA=\"\r\n @@ -385,7 +178,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:29 GMT + - Fri, 08 May 2020 18:50:05 GMT expires: - '-1' odata-version: @@ -393,24 +186,22 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK - request: - body: 'b''{"properties": {"description": "AnotherDescription", "options": [{"name": + body: '{"properties": {"description": "AnotherDescription", "options": [{"name": "pon000005", "configuration": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"}, "restriction": {"@odata.type": "#Microsoft.Media.ContentKeyPolicyTokenRestriction", "issuer": "AnotherIssuer", "audience": "Audience", "primaryVerificationKey": @@ -418,7 +209,7 @@ interactions: "YTFiMmMzZDRlNWY2ZzdoOGk5ajA="}, "alternateVerificationKeys": [], "requiredClaims": [{"claimType": "foo", "claimValue": "baz"}, {"claimType": "baz", "claimValue": "doo"}, {"claimType": "fus", "claimValue": "rodahh"}], "restrictionTokenType": - "Jwt", "openIdConnectDiscoveryDocument": "adocument"}}]}}''' + "Jwt", "openIdConnectDiscoveryDocument": "adocument"}}]}}' headers: Accept: - application/json @@ -435,8 +226,8 @@ interactions: ParameterSetName: - -a -n -g --description --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-media/1.1.1 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH @@ -444,11 +235,11 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"bd752f15-fb81-4141-9e8e-6691d1710f4b\",\"created\":\"2019-06-13T22:52:28.463Z\",\"lastModified\":\"2019-06-13T22:52:32.56Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"ae8cd684-fb0a-4c2d-b9ba-6805af7f21f8\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"0f5bd970-a645-4f0d-841c-c21a71dd9aea\",\"created\":\"2020-05-08T18:50:03.633Z\",\"lastModified\":\"2020-05-08T18:50:06.7Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"c1ba8071-4b17-4747-a07e-43ec076c0fcc\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n \ },\"alternateVerificationKeys\":[\r\n \r\n ],\"requiredClaims\":[\r\n \ {\r\n \"claimType\":\"foo\",\"claimValue\":\"baz\"\r\n \ },{\r\n \"claimType\":\"baz\",\"claimValue\":\"doo\"\r\n @@ -459,11 +250,11 @@ interactions: cache-control: - no-cache content-length: - - '1402' + - '1417' content-type: - application/json; odata.metadata=minimal date: - - Thu, 13 Jun 2019 22:52:32 GMT + - Fri, 08 May 2020 18:50:06 GMT expires: - '-1' odata-version: @@ -471,67 +262,18 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-powered-by: - - ASP.NET + - '1199' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 13 Jun 2019 22:52:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTT1lHQURGTFlCVTJNVkRVM0FHQ0EzUkpON1FYV1FNWlBSRXxDRTk5REJCM0I4ODY3NjRCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 From 12fbf09fb61b99224ed07c170a6142b08e8adda9 Mon Sep 17 00:00:00 2001 From: hivyas Date: Fri, 8 May 2020 13:22:54 -0700 Subject: [PATCH 10/30] fixed style and lint errors --- .../cli/command_modules/ams/_completers.py | 8 ++++++- .../azure/cli/command_modules/ams/_params.py | 5 ++++- .../cli/command_modules/ams/_sdk_utils.py | 4 ++++ .../ams/operations/content_key_policy.py | 22 +++++++++++-------- .../ams/operations/transform.py | 1 + 5 files changed, 29 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 660ec1f3896..8b1206caaec 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -10,7 +10,8 @@ get_default_streaming_policies, get_token_types, get_rentalandlease_types, get_tokens, get_allowed_languages_for_preset, - get_protocols, get_encoding_types) + get_protocols, get_encoding_types, + get_allowed_resolutions) from azure.mgmt.media.models import EncoderNamedPreset @@ -62,6 +63,11 @@ def get_allowed_languages_for_preset_completion_list(): return languages +def get_allowed_resolutions_completion_list(): + resolutions = get_allowed_resolutions() + return resolutions + + def get_mru_type_completion_list(): return ['S1', 'S2', 'S3'] diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index fe4da02f71f..66fbef06625 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -23,7 +23,8 @@ get_fairplay_rentalandlease_completion_list, get_token_completion_list, get_mru_type_completion_list, - get_encoding_types_list) + get_encoding_types_list, + get_allowed_resolutions_completion_list) from azure.cli.command_modules.ams._validators import (validate_storage_account_id, datetime_format, @@ -99,6 +100,8 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('insights_to_extract', arg_group='Video Analyzer', arg_type=get_enum_type(InsightsType), help='The type of insights to be extracted. If not set then the type will be selected based on the content type. If the content is audio only then only audio insights will be extracted and if it is video only video insights will be extracted.') c.argument('audio_language', arg_group='Audio/Video Analyzer', help='The language for the audio payload in the input using the BCP-47 format of \"language tag-region\" (e.g: en-US). If not specified, automatic language detection would be employed. This feature currently supports English, Chinese, French, German, Italian, Japanese, Spanish, Russian, and Portuguese. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to English. Allowed values: {}.' .format(", ".join(get_allowed_languages_for_preset_completion_list()))) + c.argument('resolution', arg_group='Face Detector', help='Specifies the maximum resolution at which your video is analyzed. The default behavior is "SourceResolution," which will keep the input video at its original resolution when analyzed. Using StandardDefinition will resize input videos to standard definition while preserving the appropriate aspect ratio. It will only resize if the video is of higher resolution. For example, a 1920x1080 input would be scaled to 640x360 before processing. Switching to "StandardDefinition" will reduce the time it takes to process high resolution video. It may also reduce the cost of using this component (see https://azure.microsoft.com/en-us/pricing/details/media-services/#analytics for details). However, faces that end up being too small in the resized video may not be detected. Allowed values: {}.' + .format(", ".join(get_allowed_resolutions_completion_list()))) c.argument('relative_priority', arg_type=get_enum_type(Priority), help='Sets the relative priority of the transform outputs within a transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal.') c.argument('on_error', arg_type=get_enum_type(OnErrorType), help="A Transform can define more than one output. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with 'ContinueJob'. The default is 'StopProcessingJob'.") c.argument('description', help='The description of the transform.') diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 53775d02e18..9f58d3be61f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -46,6 +46,10 @@ def get_allowed_languages_for_preset(): 'pt-BR', 'zh-CN', 'de-DE', 'ar-EG', 'ru-RU', 'hi-IN'] +def get_allowed_resolutions(): + return ['StandardDefinition', 'SourceResolution'] + + def get_media_namespace(): return 'Microsoft.Media' diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py index 4f4e5d69f9e..279aaa0ddbe 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/content_key_policy.py @@ -24,8 +24,9 @@ ContentKeyPolicyRsaTokenKey, ContentKeyPolicyX509CertificateTokenKey, ContentKeyPolicyTokenRestriction, ContentKeyPolicyTokenClaim, ContentKeyPolicyWidevineConfiguration, ContentKeyPolicyFairPlayConfiguration, - ContentKeyPolicyFairPlayOfflineRentalConfiguration, ContentKeyPolicyPlayReadyConfiguration, - ContentKeyPolicyPlayReadyLicense, ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, + ContentKeyPolicyFairPlayOfflineRentalConfiguration, + ContentKeyPolicyPlayReadyConfiguration, ContentKeyPolicyPlayReadyLicense, + ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader, ContentKeyPolicyPlayReadyContentEncryptionKeyFromKeyIdentifier, ContentKeyPolicyPlayReadyPlayRight, ContentKeyPolicyPlayReadyExplicitAnalogTelevisionRestriction) @@ -251,7 +252,7 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat alt_symmetric_token_keys, alt_rsa_token_keys, alt_x509_token_keys, token_claims, token_type, open_id_connect_discovery_document, widevine_template, ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration, play_ready_template, + rental_and_lease_key_type, rental_duration, play_ready_template, fp_playback_duration_seconds, fp_storage_duration_seconds): configuration = None @@ -262,7 +263,7 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat valid_fairplay_configuration = _valid_fairplay_configuration(ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, - rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds) + rental_duration) valid_playready_configuration = _valid_playready_configuration(play_ready_template) @@ -282,11 +283,13 @@ def _generate_content_key_policy_option(policy_option_name, clear_key_configurat if valid_fairplay_configuration: offline_configuration = None if rental_and_lease_key_type == 'DualExpiry': - offline_configuration = ContentKeyPolicyFairPlayOfflineRentalConfiguration(playback_duration_seconds=fp_playback_duration_seconds, storage_duration_seconds=fp_storage_duration_seconds) - if (ask is not None): - ask=bytearray.fromhex(ask) + offline_configuration = ContentKeyPolicyFairPlayOfflineRentalConfiguration( + playback_duration_seconds=fp_playback_duration_seconds, + storage_duration_seconds=fp_storage_duration_seconds) + if ask is not None: + ask = bytearray.fromhex(ask) configuration = ContentKeyPolicyFairPlayConfiguration( - ask=ask, + ask=ask, fair_play_pfx_password=fair_play_pfx_password, fair_play_pfx=_b64_to_str(_read_binary(fair_play_pfx)).decode('ascii'), rental_and_lease_key_type=rental_and_lease_key_type, @@ -483,9 +486,10 @@ def _valid_token_restriction(token_key, token_key_type, token_type, issuer, audi def _valid_fairplay_configuration(ask, fair_play_pfx_password, fair_play_pfx, - rental_and_lease_key_type, rental_duration, fp_playback_duration_seconds, fp_storage_duration_seconds): + rental_and_lease_key_type, rental_duration): return any([ask, fair_play_pfx_password, fair_play_pfx, rental_and_lease_key_type, rental_duration]) + def _valid_playready_configuration(play_ready_template): if play_ready_template is None: return False diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index 04c2940ba9c..d248eb47e52 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py @@ -76,6 +76,7 @@ def validate_arguments(preset, insights_to_extract, audio_language, resolution): if resolution and preset != 'FaceDetector': raise CLIError("resolution argument only works with FaceDetector preset type.") + def remove_transform_output(client, account_name, resource_group_name, transform_name, output_index): transform = client.get(resource_group_name, account_name, transform_name) From 91528ee56c70018e5a2cb56cf6527fc9b2013879 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 20 Jul 2020 11:21:21 -0700 Subject: [PATCH 11/30] made az ams sp create idempotent --- .../azure/cli/command_modules/ams/_params.py | 1 + .../azure/cli/command_modules/ams/commands.py | 2 +- .../cli/command_modules/ams/operations/sp.py | 65 +++++++++++++++---- 3 files changed, 56 insertions(+), 12 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 66fbef06625..0a45f726a09 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -85,6 +85,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('account_name', account_name_arg_type) c.argument('sp_name', name_arg_type, help="The app name or app URI to associate the RBAC with. If not present, a default name like '{amsaccountname}-access-sp' will be generated.") + c.argument('new_sp_name', help="The new app name or app URI to update the RBAC with.") c.argument('sp_password', password_arg_type, help="The password used to log in. Also known as 'Client Secret'. If not present, a random secret will be generated.") c.argument('role', help='The role of the service principal.', completer=get_role_definition_name_completion_list) diff --git a/src/azure-cli/azure/cli/command_modules/ams/commands.py b/src/azure-cli/azure/cli/command_modules/ams/commands.py index f7d983eb70e..9b5b5951e9f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/commands.py +++ b/src/azure-cli/azure/cli/command_modules/ams/commands.py @@ -54,7 +54,7 @@ def get_custom_sdk(custom_module, client_factory): g.command('sync-storage-keys', 'sync_storage_keys') with self.command_group('ams account sp', get_sdk('Mediaservices', get_mediaservices_client)) as g: - g.custom_command('create', 'create_assign_sp_to_mediaservice', + g.custom_command('create', 'create_or_update_assign_sp_to_mediaservice', custom_command_type=get_custom_sdk('sp', get_mediaservices_client)) g.custom_command('reset-credentials', 'reset_sp_credentials_for_mediaservice', custom_command_type=get_custom_sdk('sp', get_mediaservices_client)) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py b/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py index 4a29acc854c..9d14b54a140 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py @@ -15,6 +15,7 @@ from msrest.serialization import TZ_UTC from msrestazure.azure_exceptions import CloudError from azure.graphrbac.models import (ApplicationCreateParameters, + ApplicationUpdateParameters, GraphErrorException, ServicePrincipalCreateParameters) @@ -50,26 +51,28 @@ def reset_sp_credentials_for_mediaservice(cmd, client, account_name, resource_gr _assign_role(cmd, role, sp_oid, ams.id) return _build_sp_result(client.config.subscription_id, ams.location, resource_group_name, account_name, - tenant, app_id, sp_password, cmd.cli_ctx.cloud.endpoints.management, + tenant, app_id, app_display_name, sp_password, cmd.cli_ctx.cloud.endpoints.management, cmd.cli_ctx.cloud.endpoints.active_directory, - cmd.cli_ctx.cloud.endpoints.resource_manager, xml) + cmd.cli_ctx.cloud.endpoints.resource_manager, role, xml) -def create_assign_sp_to_mediaservice(cmd, client, account_name, resource_group_name, sp_name=None, - role='Contributor', sp_password=None, xml=False, years=None): +def create_or_update_assign_sp_to_mediaservice(cmd, client, account_name, resource_group_name, sp_name=None, + new_sp_name=None, role='Contributor', sp_password=None, + xml=False, years=None): ams = client.get(resource_group_name, account_name) graph_client = _graph_client_factory(cmd.cli_ctx) sp_name = _create_sp_name(account_name, sp_name) - sp_password = _create_sp_password(sp_password) app_display_name = sp_name.replace('http://', '') aad_sp = _get_service_principal(graph_client, sp_name) if aad_sp: - raise CLIError("Service principal '{}' already exists.".format(app_display_name)) + return _update_sp(cmd, client, graph_client, aad_sp, ams, account_name, resource_group_name, + app_display_name, new_sp_name, role, years, sp_password, xml) + sp_password = _create_sp_password(sp_password) aad_application = create_application(graph_client.applications, display_name=app_display_name, homepage=sp_name, @@ -86,9 +89,32 @@ def create_assign_sp_to_mediaservice(cmd, client, account_name, resource_group_n _assign_role(cmd, role, sp_oid, ams.id) return _build_sp_result(client.config.subscription_id, ams.location, resource_group_name, account_name, - tenant, app_id, sp_password, cmd.cli_ctx.cloud.endpoints.management, + tenant, app_id, app_display_name, sp_password, cmd.cli_ctx.cloud.endpoints.management, + cmd.cli_ctx.cloud.endpoints.active_directory, + cmd.cli_ctx.cloud.endpoints.resource_manager, role, xml) + + +def _update_sp(cmd, client, graph_client, aad_sp, ams, account_name, resource_group_name, display_name, + new_sp_name, role, years, sp_password, xml): + tenant = graph_client.config.tenant_id + sp_oid = aad_sp.object_id + app_id = aad_sp.app_id + app_object_id = _get_application_object_id(graph_client.applications, app_id) + + if sp_password or years: + raise CLIError("To update the credentials please use the reset-credentials command.") + + if new_sp_name: + display_name = new_sp_name.replace('http://', '') + update_application(graph_client.applications, app_object_id, display_name) + + if role: + _assign_role(cmd, role, sp_oid, ams.id) + + return _build_sp_result(client.config.subscription_id, ams.location, resource_group_name, account_name, + tenant, app_id, display_name, sp_password, cmd.cli_ctx.cloud.endpoints.management, cmd.cli_ctx.cloud.endpoints.active_directory, - cmd.cli_ctx.cloud.endpoints.resource_manager, xml) + cmd.cli_ctx.cloud.endpoints.resource_manager, role, xml) def _update_password_credentials(client, app_object_id, sp_password, years): @@ -246,7 +272,6 @@ def create_application(client, display_name, homepage, years, password, identifi homepage=homepage, reply_urls=reply_urls, password_credentials=[password_credential]) - try: return client.create(app_create_param) except GraphErrorException as ex: @@ -258,6 +283,18 @@ def create_application(client, display_name, homepage, years, password, identifi raise +def update_application(client, app_object_id, display_name): + app_update_param = ApplicationUpdateParameters(display_name=display_name) + + try: + return client.patch(app_object_id, app_update_param) + except Exception as ex: # pylint: disable=broad-except + logger.warning( + "Updating service principal failed for appid '%s'. Trace followed:\n%s", + app_object_id, ex.response.headers if hasattr(ex, 'response') else ex) # pylint: disable=no-member + raise + + def _search_role_assignments(assignments_client, assignee_object_id): f = "principalId eq '{}'".format(assignee_object_id) assignments = list(assignments_client.list(filter=f)) @@ -266,6 +303,7 @@ def _search_role_assignments(assignments_client, assignee_object_id): def _assign_role(cmd, role, sp_oid, scope): assignments = list_role_assignments(cmd, sp_oid, scope) + if assignments and list(filter(lambda x: x['roleDefinitionName'] == role, assignments)): return @@ -290,12 +328,17 @@ def _assign_role(cmd, role, sp_oid, scope): def _build_sp_result(subscription_id, location, resource_group_name, account_name, - tenant, app_id, sp_password, management_endpoint, - active_directory_endpoint, resource_manager_endoint, xml): + tenant, app_id, sp_name, sp_password, management_endpoint, + active_directory_endpoint, resource_manager_endoint, role, xml): + if not sp_password: + sp_password = "Cannot redisplay resecret. Please use reset-credentials to generate a new secret." + result = { 'SubscriptionId': subscription_id, + 'ServicePrincipalName': sp_name, 'Region': location, 'ResourceGroup': resource_group_name, + 'Role': role, 'AccountName': account_name, 'AadTenantId': tenant, 'AadClientId': app_id, From 9297770187e3e446e13fdd88db5db08e2f457641 Mon Sep 17 00:00:00 2001 From: hivyas Date: Tue, 21 Jul 2020 08:27:47 -0700 Subject: [PATCH 12/30] fixed typo and updated help text --- src/azure-cli/azure/cli/command_modules/ams/_help.py | 5 ++++- src/azure-cli/azure/cli/command_modules/ams/operations/sp.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 132122c9a14..cff1879f8b1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -69,12 +69,15 @@ helps['ams account sp create'] = """ type: command - short-summary: Create a service principal and configure its access to an Azure Media Services account. + short-summary: Create or update a service principal and configure its access to an Azure Media Services account. long-summary: Service principal propagation throughout Azure Active Directory may take some extra seconds to complete. examples: - name: Create a service principal with password and configure its access to an Azure Media Services account. Output will be in xml format. text: > az ams account sp create -a myAmsAccount -g myRG -n mySpName --password mySecret --role Owner --xml + - name: Update a service principal with a new role and new name. + text: > + az ams account sp create -a myAmsAccount -g myRG -n mySpName --new-sp-name myNewSpName --role newRole """ helps['ams account sp reset-credentials'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py b/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py index 9d14b54a140..5de57cfac19 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/sp.py @@ -331,7 +331,7 @@ def _build_sp_result(subscription_id, location, resource_group_name, account_nam tenant, app_id, sp_name, sp_password, management_endpoint, active_directory_endpoint, resource_manager_endoint, role, xml): if not sp_password: - sp_password = "Cannot redisplay resecret. Please use reset-credentials to generate a new secret." + sp_password = "Cannot redisplay secret. Please use reset-credentials to generate a new secret." result = { 'SubscriptionId': subscription_id, From 7c2d5d790b370d3f619c7e04d7a11f74a3e08058 Mon Sep 17 00:00:00 2001 From: hivyas Date: Thu, 17 Dec 2020 09:25:37 -0800 Subject: [PATCH 13/30] added support for most 2020 updates --- .../cli/command_modules/ams/_completers.py | 11 ++++++++- .../azure/cli/command_modules/ams/_help.py | 5 ++++ .../azure/cli/command_modules/ams/_params.py | 14 ++++++++--- .../cli/command_modules/ams/_sdk_utils.py | 6 +++++ .../azure/cli/command_modules/ams/commands.py | 3 +++ .../ams/operations/live_event.py | 23 +++++++++++++++---- .../ams/operations/transform.py | 12 ++++++---- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 11 files changed, 64 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 8b1206caaec..22ba9039efd 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -11,7 +11,8 @@ get_rentalandlease_types, get_tokens, get_allowed_languages_for_preset, get_protocols, get_encoding_types, - get_allowed_resolutions) + get_allowed_resolutions, get_transcription_langauges, + get_analysis_modes) from azure.mgmt.media.models import EncoderNamedPreset @@ -75,3 +76,11 @@ def get_mru_type_completion_list(): def get_encoding_types_list(): encoding_types = get_encoding_types() return encoding_types + +def get_allowed_transcription_languages(): + languages = get_transcription_langauges() + return languages + +def get_allowed_analysis_modes(): + modes = get_analysis_modes() + return modes \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index cff1879f8b1..6061f9b4111 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -482,6 +482,11 @@ short-summary: Start a live event. """ +helps['ams live-event standby'] = """ + type: command + short-summary: Allocate a live event to be started later. +""" + helps['ams live-event show'] = """ type: command short-summary: Show the details of a live event. diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index e5737587049..a6c1e909ca3 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -24,7 +24,9 @@ get_token_completion_list, get_mru_type_completion_list, get_encoding_types_list, - get_allowed_resolutions_completion_list) + get_allowed_resolutions_completion_list, + get_allowed_transcription_languages, + get_allowed_analysis_modes) from azure.cli.command_modules.ams._validators import (validate_storage_account_id, datetime_format, @@ -56,7 +58,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account') as c: c.argument('location', arg_type=get_location_type(self.cli_ctx), - validator=get_default_location_from_resource_group) + validator=get_default_location_from_resource_group, required=True) c.argument('tags', arg_type=tags_type) with self.argument_context('ams account create') as c: @@ -99,8 +101,10 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('preset', help='Preset that describes the operations that will be used to modify, transcode, or extract insights from the source file to generate the transform output. Allowed values: {}. In addition to the allowed values, you can also pass a path to a custom Standard Encoder preset JSON file. See https://docs.microsoft.com/rest/api/media/transforms/createorupdate#standardencoderpreset for further details on the settings to use to build a custom preset.' .format(", ".join(get_presets_definition_name_completion_list()))) c.argument('insights_to_extract', arg_group='Video Analyzer', arg_type=get_enum_type(InsightsType), help='The type of insights to be extracted. If not set then the type will be selected based on the content type. If the content is audio only then only audio insights will be extracted and if it is video only video insights will be extracted.') + c.argument('video_analysis_mode', arg_group='Video Analyzer', help='Determines the set of audio analysis operations to be performed. If unspecified, the Standard AudioAnalysisMode would be chosen. Allowed values: {}'.format(", ".join(get_allowed_analysis_modes()))) c.argument('audio_language', arg_group='Audio/Video Analyzer', help='The language for the audio payload in the input using the BCP-47 format of \"language tag-region\" (e.g: en-US). If not specified, automatic language detection would be employed. This feature currently supports English, Chinese, French, German, Italian, Japanese, Spanish, Russian, and Portuguese. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to English. Allowed values: {}.' .format(", ".join(get_allowed_languages_for_preset_completion_list()))) + c.argument('audio_analysis_mode', arg_group='Audio/Video Analyzer', help='Determines the set of audio analysis operations to be performed. If unspecified, the Standard AudioAnalysisMode would be chosen. Allowed values: {}.'.format(", ".join(get_allowed_analysis_modes()))) c.argument('resolution', arg_group='Face Detector', help='Specifies the maximum resolution at which your video is analyzed. The default behavior is "SourceResolution," which will keep the input video at its original resolution when analyzed. Using StandardDefinition will resize input videos to standard definition while preserving the appropriate aspect ratio. It will only resize if the video is of higher resolution. For example, a 1920x1080 input would be scaled to 640x360 before processing. Switching to "StandardDefinition" will reduce the time it takes to process high resolution video. It may also reduce the cost of using this component (see https://azure.microsoft.com/en-us/pricing/details/media-services/#analytics for details). However, faces that end up being too small in the resized video may not be detected. Allowed values: {}.' .format(", ".join(get_allowed_resolutions_completion_list()))) c.argument('relative_priority', arg_type=get_enum_type(Priority), help='Sets the relative priority of the transform outputs within a transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal.') @@ -338,6 +342,8 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('auto_start', action='store_true', help='The flag indicates if the resource should be automatically started on creation.') c.argument('encoding_type', arg_group='Encoding', help='The encoding type for live event. This value is specified at creation time and cannot be updated. Allowed values: {}.'.format(", ".join(get_encoding_types_list()))) c.argument('preset_name', arg_group='Encoding', help='The encoding preset name. This value is specified at creation time and cannot be updated.') + c.argument('stretch_mode', arg_group='Encoding', help='Specifies how the input video will be resized to fit the desired output resolution(s). Default is None. Possible values include: None, AutoSize, AutoFit') + c.argument('key_frame_interval', arg_group='Encoding', help='Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audiotracks of an encoding live event. For example, use PT2S to indicate 2 seconds. For the video track it also defines the key frame interval, or the length of a GoP (group of pictures). If this value is not set for anencoding live event, the fragment duration defaults to 2 seconds. The value cannot be set for pass-through live events.') c.argument('tags', arg_type=tags_type) c.argument('key_frame_interval_duration', key_frame_interval_duration_arg_type, arg_group='Input', validator=validate_key_frame_interval_duration, help='ISO 8601 timespan duration of the key frame interval duration in seconds. The value should be an interger in the range of 1 (PT1S or 00:00:01) to 30 (PT30S or 00:00:30) seconds.') @@ -348,10 +354,12 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('preview_locator', arg_group='Preview', help='The identifier of the preview locator in Guid format. Specifying this at creation time allows the caller to know the preview locator url before the event is created. If omitted, the service will generate a random identifier. This value cannot be updated once the live event is created.') c.argument('streaming_policy_name', arg_group='Preview', help='The name of streaming policy used for the live event preview. This can be specified at creation time but cannot be updated.') c.argument('alternative_media_id', arg_group='Preview', help='An Alternative Media Identifier associated with the StreamingLocator created for the preview. This value is specified at creation time and cannot be updated. The identifier can be used in the CustomLicenseAcquisitionUrlTemplate or the CustomKeyAcquisitionUrlTemplate of the StreamingPolicy specified in the StreamingPolicyName field.') - c.argument('vanity_url', arg_type=get_three_state_flag(), help='Specifies whether to use a vanity url with the Live Event. This value is specified at creation time and cannot be updated.') c.argument('client_access_policy', arg_group='Cross Site Access Policies', help='Filepath to the clientaccesspolicy.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('cross_domain_policy', arg_group='Cross Site Access Policies', help='Filepath to the crossdomain.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('stream_options', nargs='+', arg_type=get_enum_type(StreamOptionsFlag), help='The options to use for the LiveEvent. This value is specified at creation time and cannot be updated.') + c.argument('live_transcription_language', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) + c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state') + c.argument('custom_hostname_prefix', help='When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') c.argument('remove_outputs_on_stop', action='store_true', help='Remove live outputs on stop.') with self.argument_context('ams live-event list') as c: diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 9f58d3be61f..1587432157d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -60,3 +60,9 @@ def get_media_type(): def get_encoding_types(): return ['Basic', 'None', 'Standard'] + +def get_transcription_langauges(): + return ['ca-ES', 'da-DK', 'de-DE', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-US', 'es-ES', 'es-MX', 'fi-FI', 'fr-CA', 'fr-FR', 'it-IT', 'nl-NL', 'pt-BR', 'pt-PT', 'sv-SE'] + +def get_analysis_modes(): + return ['Standard', 'Basic'] diff --git a/src/azure-cli/azure/cli/command_modules/ams/commands.py b/src/azure-cli/azure/cli/command_modules/ams/commands.py index 79ab866e2c6..3ba38abed76 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/commands.py +++ b/src/azure-cli/azure/cli/command_modules/ams/commands.py @@ -201,6 +201,9 @@ def get_custom_sdk(custom_module, client_factory): g.custom_command('start', 'start', custom_command_type=get_custom_sdk('live_event', get_live_events_client), supports_no_wait=True) + g.custom_command('standby', 'standby', + custom_command_type=get_custom_sdk('live_event', get_live_events_client), + supports_no_wait=True) g.custom_command('stop', 'stop', custom_command_type=get_custom_sdk('live_event', get_live_events_client), supports_no_wait=True) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py index 977e35502c8..f61fc5e3e3f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py @@ -13,10 +13,11 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, streaming_protocol, ips, # pylint: disable=too-many-locals - auto_start=False, encoding_type=None, preset_name=None, tags=None, description=None, + auto_start=False, encoding_type=None, preset_name=None, stretch_mode=None, key_frame_interval=None, tags=None, description=None, key_frame_interval_duration=None, access_token=None, no_wait=False, preview_ips=None, preview_locator=None, streaming_policy_name=None, alternative_media_id=None, - vanity_url=False, client_access_policy=None, cross_domain_policy=None, stream_options=None): + client_access_policy=None, cross_domain_policy=None, stream_options=None, live_transcription_language=None, + use_static_hostname=False, custom_hostname_prefix=None): from azure.cli.command_modules.ams._client_factory import (get_mediaservices_client) @@ -28,6 +29,10 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre live_event_input_access_control = LiveEventInputAccessControl(ip=IPAccessControl(allow=allowed_ips)) + transcriptions = [] + if live_transcription_language: + transcriptions = [{'language': live_transcription_language}] + live_event_input = LiveEventInput(streaming_protocol=LiveEventInputProtocol(streaming_protocol), access_token=access_token, key_frame_interval_duration=key_frame_interval_duration, @@ -43,9 +48,9 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre policies = create_cross_site_access_policies(client_access_policy, cross_domain_policy) live_event = LiveEvent(input=live_event_input, location=location, preview=live_event_preview, - encoding=LiveEventEncoding(encoding_type=encoding_type, preset_name=preset_name), - tags=tags, vanity_url=vanity_url, stream_options=stream_options, - cross_site_access_policies=policies, description=description) + encoding=LiveEventEncoding(encoding_type=encoding_type, preset_name=preset_name, stretch_mode=stretch_mode, key_frame_interval=key_frame_interval), + tags=tags, stream_options=stream_options, + cross_site_access_policies=policies, description=description, transcriptions=transcriptions, use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname_prefix) return sdk_no_wait(no_wait, client.create, resource_group_name=resource_group_name, account_name=account_name, live_event_name=live_event_name, parameters=live_event, auto_start=auto_start) @@ -91,6 +96,14 @@ def start(cmd, client, resource_group_name, account_name, live_event_name, no_wa return client.get(resource_group_name, account_name, live_event_name) +def standby(cmd, client, resource_group_name, account_name, live_event_name, no_wait=False): + if no_wait: + return sdk_no_wait(no_wait, client.allocate, resource_group_name, account_name, live_event_name) + + LongRunningOperation(cmd.cli_ctx)(client.allocate(resource_group_name, account_name, live_event_name)) + + return client.get(resource_group_name, account_name, live_event_name) + def stop(cmd, client, resource_group_name, account_name, live_event_name, remove_outputs_on_stop=False, no_wait=False): diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index d248eb47e52..14315d92f2a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py @@ -17,10 +17,10 @@ def create_transform(client, account_name, resource_group_name, transform_name, preset, - insights_to_extract=None, audio_language=None, on_error=None, + insights_to_extract=None, video_analysis_mode=None, audio_language=None, audio_analysis_mode=None, on_error=None, relative_priority=None, description=None, resolution=None): - outputs = [build_transform_output(preset, insights_to_extract, audio_language, + outputs = [build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, on_error, relative_priority, resolution)] return client.create_or_update(resource_group_name, account_name, transform_name, @@ -28,7 +28,7 @@ def create_transform(client, account_name, resource_group_name, transform_name, def add_transform_output(client, account_name, resource_group_name, transform_name, preset, - insights_to_extract=None, audio_language=None, on_error=None, + insights_to_extract=None, video_analysis_mode=None, audio_language=None, audio_analysis_mode=None, on_error=None, relative_priority=None, resolution=None): transform = client.get(resource_group_name, account_name, transform_name) @@ -36,13 +36,13 @@ def add_transform_output(client, account_name, resource_group_name, transform_na if not transform: show_resource_not_found_message(resource_group_name, account_name, 'transforms', transform_name) - transform.outputs.append(build_transform_output(preset, insights_to_extract, audio_language, + transform.outputs.append(build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, on_error, relative_priority, resolution)) return client.create_or_update(resource_group_name, account_name, transform_name, transform.outputs) -def build_transform_output(preset, insights_to_extract, audio_language, on_error, +def build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, on_error, relative_priority, resolution): validate_arguments(preset, insights_to_extract, audio_language, resolution) @@ -51,8 +51,10 @@ def build_transform_output(preset, insights_to_extract, audio_language, on_error if preset == 'VideoAnalyzer': transform_output.preset.audio_language = audio_language transform_output.preset.insights_to_extract = insights_to_extract + transform_output.preset.mode = video_analysis_mode elif preset == 'AudioAnalyzer': transform_output.preset.audio_language = audio_language + transform_output.preset.mode = audio_analysis_mode elif preset == 'FaceDetector': transform_output.preset.resolution = resolution diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index f1bfdf92a9f..ab680495ee3 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -54,7 +54,7 @@ azure-mgmt-loganalytics==0.7.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==2.1.0 +azure-mgmt-media==3.0.0 azure-mgmt-monitor==0.11.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.13.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index f1bfdf92a9f..ab680495ee3 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -54,7 +54,7 @@ azure-mgmt-loganalytics==0.7.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==2.1.0 +azure-mgmt-media==3.0.0 azure-mgmt-monitor==0.11.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.13.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 84b7b7c7391..673e6f8a62b 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -54,7 +54,7 @@ azure-mgmt-loganalytics==0.7.0 azure-mgmt-managementgroups==0.2.0 azure-mgmt-maps==0.1.0 azure-mgmt-marketplaceordering==0.2.1 -azure-mgmt-media==2.1.0 +azure-mgmt-media==3.0.0 azure-mgmt-monitor==0.11.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.13.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 827278085af..f2952ee7584 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -97,7 +97,7 @@ 'azure-mgmt-managementgroups~=0.1', 'azure-mgmt-maps~=0.1.0', 'azure-mgmt-marketplaceordering~=0.1', - 'azure-mgmt-media~=2.1,>=2.1.0', + 'azure-mgmt-media~=3.0,>=3.0.0', 'azure-mgmt-monitor~=0.11.0', 'azure-mgmt-msi~=0.2', 'azure-mgmt-netapp~=0.13.0', From 3067062d413db1436dc838b3953bb159f6edec32 Mon Sep 17 00:00:00 2001 From: hivyas Date: Thu, 7 Jan 2021 13:30:22 -0800 Subject: [PATCH 14/30] added encryption subgroup --- .../azure/cli/command_modules/ams/_help.py | 15 ++++++++++ .../azure/cli/command_modules/ams/_params.py | 6 ++++ .../azure/cli/command_modules/ams/commands.py | 6 ++++ .../ams/operations/encryption.py | 30 +++++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 6061f9b4111..58e3618badf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -47,6 +47,21 @@ short-summary: Checks whether the Media Service resource name is available. """ +helps['ams account encryption'] = """ + type: group + short-summary: Manage encryption for an Azure Media Services account. +""" + +helps['ams account encryption show'] = """ + type: group + short-summary: Show the details of encryption settings for an Azure Media Services account. +""" + +helps['ams account encryption set'] = """ + type: group + short-summary: Set the encryption settings for an Azure Media Services account. +""" + helps['ams account storage'] = """ type: group short-summary: Manage storage for an Azure Media Services account. diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index a6c1e909ca3..a4976d23e44 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -94,6 +94,12 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('xml', action='store_true', help='Enables xml output format.') c.argument('years', help='Number of years for which the secret will be valid. Default: 1 year.', type=int, default=None) + with self.argument_context('ams account encryption') as c: + c.argument('account_name', account_name_arg_type) + c.argument('key_source', help='The encryption key source (provider). Allowed values: SystemKey, CustomerKey.') + c.argument('key_vault_id', help='The Uri of the KeyVault.') + c.argument('key_version', help='The version of KeyVault key.') + with self.argument_context('ams transform') as c: c.argument('account_name', account_name_arg_type) c.argument('transform_name', name_arg_type, id_part='child_name_1', diff --git a/src/azure-cli/azure/cli/command_modules/ams/commands.py b/src/azure-cli/azure/cli/command_modules/ams/commands.py index 3ba38abed76..096f6933503 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/commands.py +++ b/src/azure-cli/azure/cli/command_modules/ams/commands.py @@ -65,6 +65,12 @@ def get_custom_sdk(custom_module, client_factory): g.custom_command('set', 'set_mru', custom_command_type=get_custom_sdk('mru', None)) + with self.command_group('ams account encryption', get_sdk('Mediaservices', get_mediaservices_client)) as g: + g.custom_show_command('show', 'get_encryption', + custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) + g.custom_command('set', 'set_encryption', + custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) + with self.command_group('ams transform', get_sdk('Transforms', get_transforms_client)) as g: g.custom_show_command('show', 'get_transform', custom_command_type=get_custom_sdk('transform', get_transforms_client)) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py new file mode 100644 index 00000000000..9a6cb86eba5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -0,0 +1,30 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=redefined-builtin + +import json +import requests +from azure.cli.core.util import CLIError +from azure.cli.command_modules.ams._completers import get_mru_type_completion_list +from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client +from azure.mgmt.media.models import (MediaService, AccountEncryption, KeyVaultProperties) + +def get_encryption(cmd, client, resource_group_name, account_name): + account_info = client.get(resource_group_name, + account_name) if resource_group_name else client.get_by_subscription(account_name) + return account_info.encryption + +def set_encryption(cmd, client, resource_group_name, account_name, key_source=None, key_version=None, key_vault_id=None): + account_info = client.get(resource_group_name, + account_name) if resource_group_name else client.get_by_subscription(account_name) + if key_source == 'CustomerKey': + key_vault_props = KeyVaultProperties(key_identifier = key_vault_id, current_key_identifier = key_version) + else: + key_vault_props = None + encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) + media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) + + return client.create_or_update(resource_group_name, account_name, media_service) From 2eaf71c1f2d84e97023d5cb44df740ee670bb624 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 11 Jan 2021 14:54:41 -0800 Subject: [PATCH 15/30] updated encryption --- .../azure/cli/command_modules/ams/operations/encryption.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index 9a6cb86eba5..0b1c2856f96 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -27,4 +27,5 @@ def set_encryption(cmd, client, resource_group_name, account_name, key_source=No encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) - return client.create_or_update(resource_group_name, account_name, media_service) + result = client.create_or_update(resource_group_name, account_name, media_service) + print("result is", result) From 83b7a79794aae62925b64c290a59ce07805961b6 Mon Sep 17 00:00:00 2001 From: hivyas Date: Tue, 12 Jan 2021 17:47:22 -0800 Subject: [PATCH 16/30] added testsd --- azure-cli2017.pyproj | 3 + .../cli/command_modules/ams/_completers.py | 13 +- .../azure/cli/command_modules/ams/_help.py | 5 + .../azure/cli/command_modules/ams/_params.py | 12 +- .../cli/command_modules/ams/_sdk_utils.py | 6 + .../azure/cli/command_modules/ams/commands.py | 6 +- .../command_modules/ams/operations/account.py | 19 +- .../ams/operations/encryption.py | 24 +- .../cli/command_modules/ams/operations/mru.py | 12 +- ...st_ams_account_filter_create_and_show.yaml | 40 +- ...st_ams_account_filter_list_and_delete.yaml | 68 +- .../test_ams_account_filter_update.yaml | 40 +- .../latest/recordings/test_ams_asset.yaml | 106 +- .../test_ams_asset_filter_create.yaml | 74 +- ...test_ams_asset_filter_list_and_delete.yaml | 112 +- .../test_ams_asset_filter_show.yaml | 84 +- .../test_ams_asset_filter_update.yaml | 82 +- .../test_ams_asset_get_encryption_key.yaml | 34 +- .../test_ams_asset_get_sas_urls.yaml | 42 +- ...est_ams_asset_list_streaming_locators.yaml | 48 +- .../recordings/test_ams_check_name.yaml | 46 +- .../recordings/test_ams_create_show.yaml | 92 +- .../test_ams_encryption_set_show.yaml | 783 + .../tests/latest/recordings/test_ams_job.yaml | 178 +- .../recordings/test_ams_sp_create_reset.yaml | 659 +- .../test_ams_storage_add_remove.yaml | 96 +- .../test_ams_streaming_endpoint_create.yaml | 150 +- ...streaming_endpoint_create_with_akamai.yaml | 132 +- ...dpoint_create_with_akamai_without_ips.yaml | 128 +- .../test_ams_streaming_endpoint_delete.yaml | 178 +- .../test_ams_streaming_endpoint_list.yaml | 84 +- .../test_ams_streaming_endpoint_scale.yaml | 227 +- .../test_ams_streaming_endpoint_show.yaml | 174 +- .../test_ams_streaming_endpoint_start.yaml | 5675 ++++---- ...st_ams_streaming_endpoint_start_async.yaml | 92 +- .../test_ams_streaming_endpoint_stop.yaml | 11964 +++++++++++----- ...est_ams_streaming_endpoint_stop_async.yaml | 6973 ++++----- .../test_ams_streaming_endpoint_update.yaml | 1482 +- .../test_ams_streaming_locator.yaml | 84 +- ...s_streaming_locator_list_content_keys.yaml | 60 +- ...s_streaming_locator_with_content_keys.yaml | 78 +- ...st_ams_streaming_locator_with_filters.yaml | 94 +- .../recordings/test_ams_streaming_policy.yaml | 60 +- .../test_ams_streaming_policy_cbcs.yaml | 30 +- ...ams_streaming_policy_cbcs_default_drm.yaml | 28 +- .../test_ams_streaming_policy_cenc.yaml | 60 +- ...ams_streaming_policy_cenc_default_drm.yaml | 56 +- ...treaming_policy_cenc_disable_widevine.yaml | 54 +- .../test_ams_streaming_policy_envelope.yaml | 30 +- .../test_ams_sync_storage_keys.yaml | 34 +- .../latest/recordings/test_ams_transform.yaml | 122 +- ...st_ams_transform_create_custom_preset.yaml | 30 +- ...ransform_create_custom_preset_invalid.yaml | 20 +- .../test_ams_transform_output_add.yaml | 195 +- .../test_content_key_policy_create_basic.yaml | 32 +- ...ntent_key_policy_create_with_fairplay.yaml | 32 +- ...y_policy_create_with_fairplay_offline.yaml | 32 +- ...key_policy_create_with_playready_fail.yaml | 20 +- ..._policy_create_with_playready_success.yaml | 30 +- ..._content_key_policy_create_with_token.yaml | 34 +- ...ntent_key_policy_create_with_widevine.yaml | 34 +- .../test_content_key_policy_delete_list.yaml | 54 +- .../test_content_key_policy_show_basic.yaml | 40 +- ..._content_key_policy_show_with_secrets.yaml | 52 +- .../test_content_key_policy_update.yaml | 60 +- .../recordings/test_live_event_create.yaml | 327 +- .../recordings/test_live_event_delete.yaml | 272 +- .../recordings/test_live_event_list.yaml | 231 +- .../recordings/test_live_event_reset.yaml | 155 +- .../recordings/test_live_event_show.yaml | 185 +- .../recordings/test_live_event_standby.yaml | 472 + .../recordings/test_live_event_start.yaml | 143 +- .../recordings/test_live_event_stop.yaml | 244 +- ...st_live_event_stop_and_remove_outputs.yaml | 249 +- .../recordings/test_live_event_update.yaml | 189 +- .../recordings/test_live_output_create.yaml | 150 +- .../recordings/test_live_output_delete.yaml | 232 +- .../recordings/test_live_output_list.yaml | 154 +- .../recordings/test_live_output_show.yaml | 162 +- .../test_ams_account_encryption_scenarios.py | 50 + .../latest/test_ams_account_mru_scenarios.py | 22 +- .../latest/test_ams_account_scenarios.py | 5 +- .../latest/test_ams_live_event_scenarios.py | 60 +- .../latest/test_ams_transform_scenarios.py | 14 +- 84 files changed, 20024 insertions(+), 14690 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 8144e45d8a3..8f615e654bf 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -201,6 +201,9 @@ + + Code + diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 22ba9039efd..e93748343ba 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -12,7 +12,8 @@ get_allowed_languages_for_preset, get_protocols, get_encoding_types, get_allowed_resolutions, get_transcription_langauges, - get_analysis_modes) + get_analysis_modes, get_stretch_mode_types, + get_storage_authentication_allowed_values) from azure.mgmt.media.models import EncoderNamedPreset @@ -83,4 +84,12 @@ def get_allowed_transcription_languages(): def get_allowed_analysis_modes(): modes = get_analysis_modes() - return modes \ No newline at end of file + return modes + +def get_stretch_mode_types_list(): + modes = get_stretch_mode_types() + return modes + +def get_storage_authentication_allowed_values_list(): + values = get_storage_authentication_allowed_values() + return values \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 58e3618badf..63a39488aec 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -105,6 +105,11 @@ short-summary: Synchronize storage account keys for a storage account associated with an Azure Media Services account. """ +helps['ams account storage set-authentication'] = """ + type: command + short-summary: Set the authentication of a storage account attached to an Azure Media Services account. +""" + helps['ams transform'] = """ type: group short-summary: Manage transforms for an Azure Media Services account. diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index a4976d23e44..e9eec735921 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -26,7 +26,9 @@ get_encoding_types_list, get_allowed_resolutions_completion_list, get_allowed_transcription_languages, - get_allowed_analysis_modes) + get_allowed_analysis_modes, + get_stretch_mode_types_list, + get_storage_authentication_allowed_values_list) from azure.cli.command_modules.ams._validators import (validate_storage_account_id, datetime_format, @@ -63,7 +65,8 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account create') as c: c.argument('storage_account', storage_account_arg_type, - help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.') + help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.'), + c.argument('managed_identity', help='Set this flag to enable managed identity on the account.') with self.argument_context('ams account check-name') as c: c.argument('account_name', options_list=['--name', '-n'], id_part=None, @@ -83,6 +86,9 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account storage sync-storage-keys') as c: c.argument('id', required=True) + with self.argument_context('ams account storage set-authentication') as c: + c.argument('storage_authentication', help='Allowed values: {}'.format(", ".join(get_storage_authentication_allowed_values_list()))) + with self.argument_context('ams account sp') as c: c.argument('account_name', account_name_arg_type) c.argument('sp_name', name_arg_type, @@ -348,7 +354,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('auto_start', action='store_true', help='The flag indicates if the resource should be automatically started on creation.') c.argument('encoding_type', arg_group='Encoding', help='The encoding type for live event. This value is specified at creation time and cannot be updated. Allowed values: {}.'.format(", ".join(get_encoding_types_list()))) c.argument('preset_name', arg_group='Encoding', help='The encoding preset name. This value is specified at creation time and cannot be updated.') - c.argument('stretch_mode', arg_group='Encoding', help='Specifies how the input video will be resized to fit the desired output resolution(s). Default is None. Possible values include: None, AutoSize, AutoFit') + c.argument('stretch_mode', arg_group='Encoding', help='Specifies how the input video will be resized to fit the desired output resolution(s). Default is None. Allowed values: {}.'.format(", ".join(get_stretch_mode_types_list()))) c.argument('key_frame_interval', arg_group='Encoding', help='Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audiotracks of an encoding live event. For example, use PT2S to indicate 2 seconds. For the video track it also defines the key frame interval, or the length of a GoP (group of pictures). If this value is not set for anencoding live event, the fragment duration defaults to 2 seconds. The value cannot be set for pass-through live events.') c.argument('tags', arg_type=tags_type) c.argument('key_frame_interval_duration', key_frame_interval_duration_arg_type, arg_group='Input', validator=validate_key_frame_interval_duration, diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 1587432157d..7becc7879be 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -66,3 +66,9 @@ def get_transcription_langauges(): def get_analysis_modes(): return ['Standard', 'Basic'] + +def get_stretch_mode_types(): + return ['None', 'AutoSize', 'AutoFit'] + +def get_storage_authentication_allowed_values(): + return ['System', 'ManagedIdentity'] \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/ams/commands.py b/src/azure-cli/azure/cli/command_modules/ams/commands.py index 096f6933503..f61d2fa0ecc 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/commands.py +++ b/src/azure-cli/azure/cli/command_modules/ams/commands.py @@ -51,6 +51,8 @@ def get_custom_sdk(custom_module, client_factory): custom_command_type=get_custom_sdk('account', get_mediaservices_client)) g.custom_command('remove', 'remove_mediaservice_secondary_storage', custom_command_type=get_custom_sdk('account', get_mediaservices_client)) + g.custom_command('set-authentication', 'set_mediaservice_trusted_storage', + custom_command_type=get_custom_sdk('account', get_mediaservices_client)) g.command('sync-storage-keys', 'sync_storage_keys') with self.command_group('ams account sp', get_sdk('Mediaservices', get_mediaservices_client)) as g: @@ -61,9 +63,9 @@ def get_custom_sdk(custom_module, client_factory): with self.command_group('ams account mru', get_sdk('Mediaservices', get_mediaservices_client)) as g: g.custom_show_command('show', 'get_mru', - custom_command_type=get_custom_sdk('mru', None)) + custom_command_type=get_custom_sdk('mru', get_mediaservices_client)) g.custom_command('set', 'set_mru', - custom_command_type=get_custom_sdk('mru', None)) + custom_command_type=get_custom_sdk('mru', get_mediaservices_client)) with self.command_group('ams account encryption', get_sdk('Mediaservices', get_mediaservices_client)) as g: g.custom_show_command('show', 'get_encryption', diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index 362ae718814..6e4aaf5b366 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -5,7 +5,7 @@ from knack.util import CLIError -from azure.mgmt.media.models import (ApiErrorException, MediaService, StorageAccount) +from azure.mgmt.media.models import (ApiErrorException, MediaService, MediaServiceIdentity, StorageAccount) def get_mediaservice(client, account_name, resource_group_name=None): @@ -17,11 +17,11 @@ def list_mediaservices(client, resource_group_name=None): return client.list(resource_group_name) if resource_group_name else client.list_by_subscription() -def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, tags=None): +def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, managed_identity=False, tags=None): storage_account_primary = StorageAccount(type='Primary', id=storage_account) return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary], - location, + location, managed_identity, tags) @@ -54,12 +54,19 @@ def remove_mediaservice_secondary_storage(client, resource_group_name, account_n ams.location, ams.tags) +def set_mediaservice_trusted_storage(client, resource_group_name, account_name, storage_account, storage_authentication): + ams = client.get(resource_group_name, account_name) + media_service = MediaService(location=ams.location, storage_accounts=ams.storage_accounts, storage_authentication=storage_authentication) + + return client.create_or_update(resource_group_name, account_name, media_service) + def create_or_update_mediaservice(client, resource_group_name, account_name, storage_accounts=None, - location=None, + location=None, managed_identity=False, tags=None): - - media_service = MediaService(location=location, storage_accounts=storage_accounts, tags=tags) + identity = 'SystemAssigned' if managed_identity else 'None' + media_service = MediaService(location=location, storage_accounts=storage_accounts, identity=MediaServiceIdentity(type=identity), + tags=tags) return client.create_or_update(resource_group_name, account_name, media_service) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index 0b1c2856f96..df3e00881ca 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -8,6 +8,7 @@ import json import requests from azure.cli.core.util import CLIError +from azure.cli.core.azclierror import BadRequestError from azure.cli.command_modules.ams._completers import get_mru_type_completion_list from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client from azure.mgmt.media.models import (MediaService, AccountEncryption, KeyVaultProperties) @@ -18,14 +19,19 @@ def get_encryption(cmd, client, resource_group_name, account_name): return account_info.encryption def set_encryption(cmd, client, resource_group_name, account_name, key_source=None, key_version=None, key_vault_id=None): - account_info = client.get(resource_group_name, + try: + account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) - if key_source == 'CustomerKey': - key_vault_props = KeyVaultProperties(key_identifier = key_vault_id, current_key_identifier = key_version) - else: - key_vault_props = None - encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) - media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) + if key_source == 'CustomerKey': + key_vault_props = KeyVaultProperties(key_identifier = key_vault_id, current_key_identifier = key_version) + else: + key_vault_props = None + encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) + media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) - result = client.create_or_update(resource_group_name, account_name, media_service) - print("result is", result) + return client.create_or_update(resource_group_name, account_name, media_service) + except Exception as ex: + recommendation = '' + if ex.message == '(BadRequest) Access to the Customer Key was forbidden.': + recommendation = 'Please use the Azure Portal to grant the key vault access to the media account. For more information please visit https://aka.ms/keyvaultaccess' + raise BadRequestError(ex, recommendation) \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index f3ce20616c1..f093543e621 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -16,12 +16,20 @@ 2: 'S3'} -def get_mru(cmd, resource_group_name, account_name): +def get_mru(client, cmd, resource_group_name, account_name): + account_info = client.get(resource_group_name, + account_name) if resource_group_name else client.get_by_subscription(account_name) + if account_info.encryption: + raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported by the CLI. Please use the Azure Portal to scale Media Reserved Units.') mru = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name).get_mru() return _map_mru(mru) -def set_mru(cmd, resource_group_name, account_name, count=None, type=None): +def set_mru(client, cmd, resource_group_name, account_name, count=None, type=None): + account_info = client.get(resource_group_name, + account_name) if resource_group_name else client.get_by_subscription(account_name) + if account_info.encryption: + raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported by the CLI. Please use the Azure Portal to scale Media Reserved Units.') client = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name) mru = client.get_mru() diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml index 63c4179ef60..993ac01cbe9 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "northcentralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '309' + - '339' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Central US\",\"properties\":{\r\n \"mediaServiceId\":\"0220c5a0-4db7-4de0-882d-ef9a5346a00a\",\"storageAccounts\":[\r\n + Central US\",\"properties\":{\r\n \"mediaServiceId\":\"6c4647b6-b946-4deb-b2c3-c48588e3fe1d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '672' + - '790' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Wed, 13 Jan 2021 01:18:44 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -83,11 +85,11 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -106,7 +108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -120,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -139,11 +141,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -162,7 +164,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -197,11 +199,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -216,7 +218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:18:46 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml index ade08bed912..7b40997e160 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "southcentralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '309' + - '339' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - Central US\",\"properties\":{\r\n \"mediaServiceId\":\"755304fe-2bcb-41f6-9ac5-df5b24db77b0\",\"storageAccounts\":[\r\n + Central US\",\"properties\":{\r\n \"mediaServiceId\":\"33ed2f21-e81a-4cc3-842d-caf490453044\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '672' + - '790' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Wed, 13 Jan 2021 01:18:43 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -72,11 +74,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n \r\n ]\r\n}" @@ -88,7 +90,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Wed, 13 Jan 2021 01:18:44 GMT expires: - '-1' odata-version: @@ -134,11 +136,11 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -157,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -171,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created @@ -190,11 +192,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -214,7 +216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -260,11 +262,11 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000005\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -283,7 +285,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:18:46 GMT expires: - '-1' odata-version: @@ -297,7 +299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -316,11 +318,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -348,7 +350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Wed, 13 Jan 2021 01:18:46 GMT expires: - '-1' odata-version: @@ -385,11 +387,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000005?api-version=2020-05-01 response: body: string: '' @@ -399,7 +401,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:39:58 GMT + - Wed, 13 Jan 2021 01:18:47 GMT expires: - '-1' pragma: @@ -411,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK @@ -430,11 +432,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -454,7 +456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:58 GMT + - Wed, 13 Jan 2021 01:18:47 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml index dd6a5137fab..5ad7d3afc62 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "northeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1d9a5937-4569-4958-8e60-1afea3848065\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"8b9048ba-77af-49fe-b301-15c69ee0328b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:18:42 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -82,11 +84,11 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -105,7 +107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:18:43 GMT expires: - '-1' odata-version: @@ -138,11 +140,11 @@ interactions: - -a -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -161,7 +163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -206,11 +208,11 @@ interactions: - -a -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters/filter000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n @@ -229,7 +231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:59 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' odata-version: @@ -247,7 +249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml index 382f5d1a20e..02cb79347c2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"4d2e692d-d88c-4bdf-ab48-0ddc0c13bb5b\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 GMT + - Wed, 13 Jan 2021 01:20:24 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"4d2e692d-d88c-4bdf-ab48-0ddc0c13bb5b\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:28 GMT + - Wed, 13 Jan 2021 01:20:26 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: body: '{"location": "Australia East", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "type": "Secondary"}]}}' + "type": "Secondary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -126,34 +130,36 @@ interactions: Connection: - keep-alive Content-Length: - - '553' + - '583' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"4d2e692d-d88c-4bdf-ab48-0ddc0c13bb5b\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '928' + - '1046' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:29 GMT + - Wed, 13 Jan 2021 01:20:29 GMT expires: - '-1' odata-version: @@ -167,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -191,15 +197,15 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"d7d2489b-bb70-4389-b5d4-fd5f9b175aab\",\"created\":\"2020-09-25T21:41:30.74Z\",\"lastModified\":\"2020-09-25T21:41:30.74Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:31.83Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -209,7 +215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:31 GMT + - Wed, 13 Jan 2021 01:20:32 GMT expires: - '-1' odata-version: @@ -242,15 +248,15 @@ interactions: - -a -n -g --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"d7d2489b-bb70-4389-b5d4-fd5f9b175aab\",\"created\":\"2020-09-25T21:41:30.74Z\",\"lastModified\":\"2020-09-25T21:41:30.74Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:31.83Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -260,7 +266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:32 GMT + - Wed, 13 Jan 2021 01:20:33 GMT expires: - '-1' odata-version: @@ -300,15 +306,15 @@ interactions: - -a -n -g --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"d7d2489b-bb70-4389-b5d4-fd5f9b175aab\",\"created\":\"2020-09-25T21:41:30.74Z\",\"lastModified\":\"2020-09-25T21:41:34.213Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -318,7 +324,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:33 GMT + - Wed, 13 Jan 2021 01:20:34 GMT expires: - '-1' odata-version: @@ -355,15 +361,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"d7d2489b-bb70-4389-b5d4-fd5f9b175aab\",\"created\":\"2020-09-25T21:41:30.74Z\",\"lastModified\":\"2020-09-25T21:41:34.213Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -373,7 +379,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:34 GMT + - Wed, 13 Jan 2021 01:20:36 GMT expires: - '-1' odata-version: @@ -408,11 +414,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000009?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000009?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -427,7 +433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:41:35 GMT + - Wed, 13 Jan 2021 01:20:37 GMT expires: - '-1' pragma: @@ -456,15 +462,15 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"d7d2489b-bb70-4389-b5d4-fd5f9b175aab\",\"created\":\"2020-09-25T21:41:30.74Z\",\"lastModified\":\"2020-09-25T21:41:34.213Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -474,7 +480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:36 GMT + - Wed, 13 Jan 2021 01:20:39 GMT expires: - '-1' odata-version: @@ -511,11 +517,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000004/assets/asset000006?api-version=2020-05-01 response: body: string: '' @@ -525,7 +531,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:41:38 GMT + - Wed, 13 Jan 2021 01:20:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml index 5f75d0841b0..d937233fe9c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"9abc72ef-c4d1-4087-a873-6710cd6bb119\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:21 GMT + - Wed, 13 Jan 2021 01:19:11 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"9abc72ef-c4d1-4087-a873-6710cd6bb119\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:22 GMT + - Wed, 13 Jan 2021 01:19:12 GMT expires: - '-1' odata-version: @@ -112,7 +116,7 @@ interactions: message: OK - request: body: '{"location": "West Europe", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -123,33 +127,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"9abc72ef-c4d1-4087-a873-6710cd6bb119\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:23 GMT + - Wed, 13 Jan 2021 01:19:13 GMT expires: - '-1' odata-version: @@ -163,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -187,25 +193,25 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"27ca5d26-5709-4912-bce5-5a83314c74c9\",\"created\":\"2020-09-25T21:40:26.023Z\",\"lastModified\":\"2020-09-25T21:40:26.023Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"ef7f7cb8-fc40-4bb4-ada8-2a6ffe841f2a\",\"created\":\"2021-01-13T01:19:15.62Z\",\"lastModified\":\"2021-01-13T01:19:15.62Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '613' + - '611' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:26 GMT + - Wed, 13 Jan 2021 01:19:15 GMT expires: - '-1' odata-version: @@ -219,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -249,11 +255,11 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -272,7 +278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:28 GMT + - Wed, 13 Jan 2021 01:19:18 GMT expires: - '-1' odata-version: @@ -286,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml index d62547b09f3..f18e3c0d66b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japanwest", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"d1a1cfb4-add2-459a-a31b-6844f0a6b224\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:19 GMT + - Wed, 13 Jan 2021 01:19:10 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"d1a1cfb4-add2-459a-a31b-6844f0a6b224\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:19 GMT + - Wed, 13 Jan 2021 01:19:11 GMT expires: - '-1' odata-version: @@ -112,7 +116,7 @@ interactions: message: OK - request: body: '{"location": "Japan West", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -123,33 +127,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"d1a1cfb4-add2-459a-a31b-6844f0a6b224\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:20 GMT + - Wed, 13 Jan 2021 01:19:12 GMT expires: - '-1' odata-version: @@ -163,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -187,25 +193,25 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2b0d86af-bf8e-4ea5-a653-19c4004f3b78\",\"created\":\"2020-09-25T21:40:22.913Z\",\"lastModified\":\"2020-09-25T21:40:22.913Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"b044cd35-db38-42b3-aef0-d57b2fe4c405\",\"created\":\"2021-01-13T01:19:13.82Z\",\"lastModified\":\"2021-01-13T01:19:13.82Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '613' + - '611' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:22 GMT + - Wed, 13 Jan 2021 01:19:14 GMT expires: - '-1' odata-version: @@ -238,11 +244,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n \r\n ]\r\n}" @@ -254,7 +260,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:24 GMT + - Wed, 13 Jan 2021 01:19:15 GMT expires: - '-1' odata-version: @@ -293,11 +299,11 @@ interactions: - -a --asset-name -g -n --first-quality User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -311,7 +317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:26 GMT + - Wed, 13 Jan 2021 01:19:18 GMT expires: - '-1' odata-version: @@ -325,7 +331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -344,11 +350,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -362,7 +368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:28 GMT + - Wed, 13 Jan 2021 01:19:19 GMT expires: - '-1' odata-version: @@ -401,11 +407,11 @@ interactions: - -a --asset-name -g -n --bitrate User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000009?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000009?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000009\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000009\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -419,7 +425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:30 GMT + - Wed, 13 Jan 2021 01:19:21 GMT expires: - '-1' odata-version: @@ -433,7 +439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -452,11 +458,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -472,7 +478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:31 GMT + - Wed, 13 Jan 2021 01:19:23 GMT expires: - '-1' odata-version: @@ -509,11 +515,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000009?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000009?api-version=2020-05-01 response: body: string: '' @@ -523,7 +529,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:40:34 GMT + - Wed, 13 Jan 2021 01:19:24 GMT expires: - '-1' pragma: @@ -535,7 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -554,11 +560,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -572,7 +578,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:36 GMT + - Wed, 13 Jan 2021 01:19:26 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml index 5d9e4eabe1d..c67a2ab4568 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "brazilsouth", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"5903716a-66bd-4ac6-a95e-bb2da57940fd\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:21 GMT + - Wed, 13 Jan 2021 01:19:15 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"5903716a-66bd-4ac6-a95e-bb2da57940fd\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:23 GMT + - Wed, 13 Jan 2021 01:19:16 GMT expires: - '-1' odata-version: @@ -113,7 +117,7 @@ interactions: - request: body: '{"location": "Brazil South", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -124,33 +128,35 @@ interactions: Connection: - keep-alive Content-Length: - - '307' + - '337' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"5903716a-66bd-4ac6-a95e-bb2da57940fd\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:24 GMT + - Wed, 13 Jan 2021 01:19:18 GMT expires: - '-1' odata-version: @@ -164,7 +170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -188,15 +194,15 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"8548eced-2b30-4d63-bbaf-2f311c0a4321\",\"created\":\"2020-09-25T21:40:27.097Z\",\"lastModified\":\"2020-09-25T21:40:27.097Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"115a7ed4-b6ed-4442-9a98-16b04953c0a4\",\"created\":\"2021-01-13T01:19:20.563Z\",\"lastModified\":\"2021-01-13T01:19:20.563Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -206,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:27 GMT + - Wed, 13 Jan 2021 01:19:21 GMT expires: - '-1' odata-version: @@ -220,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -250,11 +256,11 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -273,7 +279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:30 GMT + - Wed, 13 Jan 2021 01:19:24 GMT expires: - '-1' odata-version: @@ -287,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -306,11 +312,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -329,7 +335,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:33 GMT + - Wed, 13 Jan 2021 01:19:27 GMT expires: - '-1' odata-version: @@ -364,11 +370,11 @@ interactions: - -a --asset-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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/asset-filter000009?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/asset-filter000009?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -383,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:40:35 GMT + - Wed, 13 Jan 2021 01:19:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml index cc69b6a5028..60af83be60a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japaneast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"18bd4324-6cfd-4066-bc65-e648c20064f3\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:23 GMT + - Wed, 13 Jan 2021 01:20:37 GMT expires: - '-1' odata-version: @@ -71,26 +73,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"18bd4324-6cfd-4066-bc65-e648c20064f3\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:23 GMT + - Wed, 13 Jan 2021 01:20:38 GMT expires: - '-1' odata-version: @@ -112,7 +116,7 @@ interactions: message: OK - request: body: '{"location": "Japan East", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -123,33 +127,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"18bd4324-6cfd-4066-bc65-e648c20064f3\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:24 GMT + - Wed, 13 Jan 2021 01:20:40 GMT expires: - '-1' odata-version: @@ -163,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -187,15 +193,15 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"f2301c1f-6dce-4b04-b68a-98043ec67ef2\",\"created\":\"2020-09-25T21:40:25.697Z\",\"lastModified\":\"2020-09-25T21:40:25.697Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"03b700eb-9651-417f-a981-8d94f2254a90\",\"created\":\"2021-01-13T01:20:41.497Z\",\"lastModified\":\"2021-01-13T01:20:41.497Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -205,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:25 GMT + - Wed, 13 Jan 2021 01:20:42 GMT expires: - '-1' odata-version: @@ -249,11 +255,11 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -272,7 +278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:28 GMT + - Wed, 13 Jan 2021 01:20:44 GMT expires: - '-1' odata-version: @@ -286,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -305,11 +311,11 @@ interactions: - -a --asset-name -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -328,7 +334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:30 GMT + - Wed, 13 Jan 2021 01:20:46 GMT expires: - '-1' odata-version: @@ -373,11 +379,11 @@ interactions: - -a --asset-name -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005/assetFilters/filter000008?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000008\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005/assetFilters/filter000008\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -396,7 +402,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:32 GMT + - Wed, 13 Jan 2021 01:20:48 GMT expires: - '-1' odata-version: @@ -414,7 +420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml index 612095bdef0..356bb81614f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"ca2d668d-11cf-4fd8-8e37-bb83738e76ba\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"f3152661-2361-4e03-aeda-f48add993c8f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:50 GMT + - Wed, 13 Jan 2021 01:20:20 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -75,15 +77,15 @@ interactions: - -a -n -g --description --alternate-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"1ea2e0d1-2776-4502-ad66-8be4c349831f\",\"created\":\"2020-09-25T21:40:52.547Z\",\"lastModified\":\"2020-09-25T21:40:52.547Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"c7ae2379-ce14-4752-b7e9-ded511ce7446\",\"created\":\"2021-01-13T01:20:22.547Z\",\"lastModified\":\"2021-01-13T01:20:22.547Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -93,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:53 GMT + - Wed, 13 Jan 2021 01:20:22 GMT expires: - '-1' odata-version: @@ -128,11 +130,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/getEncryptionKey?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/getEncryptionKey?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": @@ -146,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:40:54 GMT + - Wed, 13 Jan 2021 01:20:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml index b52ae65b85d..3fb694cb0e5 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiasoutheast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '313' + - '343' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"6eb37186-319f-497e-8a13-e28eaeb2600e\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"9a632724-cab4-42f6-a15e-842bdf8256af\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '675' + - '793' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:12 GMT + - Wed, 13 Jan 2021 01:19:44 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -76,25 +78,25 @@ interactions: - -a -n -g --description --alternate-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"25f20cc0-8a6b-4e9f-b266-a1bbc676fa49\",\"created\":\"2020-09-25T21:41:14.69Z\",\"lastModified\":\"2020-09-25T21:41:14.69Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"40c772a0-e143-404c-bec0-f5cf8f10b0cd\",\"created\":\"2021-01-13T01:19:46.987Z\",\"lastModified\":\"2021-01-13T01:19:46.987Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '588' + - '590' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:25 GMT + - Wed, 13 Jan 2021 01:19:48 GMT expires: - '-1' odata-version: @@ -113,7 +115,7 @@ interactions: code: 201 message: Created - request: - body: '{"permissions": "Read", "expiryTime": "2020-09-26T13:40:25.103472Z"}' + body: '{"permissions": "Read", "expiryTime": "2021-01-13T16:19:15.588216Z"}' headers: Accept: - application/json @@ -131,24 +133,24 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listContainerSas?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listContainerSas?api-version=2020-05-01 response: body: - string: "{\r\n \"assetContainerSasUrls\":[\r\n \"https://clitest000002.blob.core.windows.net/asset-25f20cc0-8a6b-4e9f-b266-a1bbc676fa49?sv=2019-02-02&sr=c&sig=UTSVmG9Lm9rZjzEM8%2FkV3gogEvQeLDPT8Q%2FXm3FNRrs%3D&se=2020-09-26T13:40:25Z&sp=rl\",\"https://clitest000002.blob.core.windows.net/asset-25f20cc0-8a6b-4e9f-b266-a1bbc676fa49?sv=2019-02-02&sr=c&sig=E1ukUzNlGdBQTIFNiJr2CYGOXvdgRoLhCfensZIf1aQ%3D&se=2020-09-26T13:40:25Z&sp=rl\"\r\n + string: "{\r\n \"assetContainerSasUrls\":[\r\n \"https://clitest000002.blob.core.windows.net/asset-40c772a0-e143-404c-bec0-f5cf8f10b0cd?sv=2019-02-02&sr=c&sig=mNKK0KnJ1Rwuni8R8c86h1cjWODKWxa%2FKMN%2BUi90Fjs%3D&se=2021-01-13T16:19:15Z&sp=rl\",\"https://clitest000002.blob.core.windows.net/asset-40c772a0-e143-404c-bec0-f5cf8f10b0cd?sv=2019-02-02&sr=c&sig=9qHgBjWWcnWat%2B4mf4zqk9GdjgRL2NCROl%2FfBWVXjBI%3D&se=2021-01-13T16:19:15Z&sp=rl\"\r\n \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '447' + - '451' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 GMT + - Wed, 13 Jan 2021 01:19:48 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml index 5196d2fc88d..452c1973beb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "centralindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '307' + - '337' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"9b21a130-ad4f-4f16-9ba1-2c5209a37167\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"b77e5df3-f7e6-48ee-b420-9de012716258\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '669' + - '787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:59 GMT + - Wed, 13 Jan 2021 01:19:55 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -76,15 +78,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"f8fd5e21-d378-4d37-a1e5-3c7b0ceaca34\",\"created\":\"2020-09-25T21:41:02.04Z\",\"lastModified\":\"2020-09-25T21:41:02.04Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"195c61c6-b940-4b9e-b8ea-e06a9dd618ba\",\"created\":\"2021-01-13T01:19:57.44Z\",\"lastModified\":\"2021-01-13T01:19:57.44Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -94,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:02 GMT + - Wed, 13 Jan 2021 01:19:59 GMT expires: - '-1' odata-version: @@ -108,7 +110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -131,15 +133,15 @@ interactions: - -n -a -g --streaming-policy-name --asset-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/str000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/str000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"str000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/str000005\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:41:05.0070152Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"064bf22a-d03e-4876-a685-51e896391591\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:20:01.0199173Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"47aaca7e-5d18-4b94-9289-e45837fad1f4\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"contentKeys\":[\r\n \ \r\n ],\"filters\":[\r\n \r\n ]\r\n }\r\n}" headers: cache-control: @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:04 GMT + - Wed, 13 Jan 2021 01:20:01 GMT expires: - '-1' odata-version: @@ -184,24 +186,24 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listStreamingLocators?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listStreamingLocators?api-version=2020-05-01 response: body: - string: "{\r\n \"streamingLocators\":[\r\n {\r\n \"name\":\"str000005\",\"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:41:05.007Z\",\"endTime\":\"9999-12-31T23:59:59.997Z\",\"streamingLocatorId\":\"064bf22a-d03e-4876-a685-51e896391591\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\"\r\n + string: "{\r\n \"streamingLocators\":[\r\n {\r\n \"name\":\"str000005\",\"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:20:01.02Z\",\"endTime\":\"9999-12-31T23:59:59.997Z\",\"streamingLocatorId\":\"47aaca7e-5d18-4b94-9289-e45837fad1f4\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\"\r\n \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '292' + - '291' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:06 GMT + - Wed, 13 Jan 2021 01:20:03 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml index f54415665bf..9aa1c3bbd31 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"6ddff17a-6139-42e7-93f0-7eb95f681ada\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"d82b9c4c-fa89-457a-8bbd-d43c84b3d667\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Wed, 13 Jan 2021 01:18:40 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -75,11 +77,11 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2020-05-01 response: body: string: "{\r\n \"nameAvailable\":false,\"reason\":\"AlreadyExists\",\"message\":\"Already @@ -93,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:18:41 GMT expires: - '-1' odata-version: @@ -134,11 +136,11 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2020-05-01 response: body: string: "{\r\n \"nameAvailable\":true\r\n}" @@ -150,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:18:42 GMT expires: - '-1' odata-version: @@ -192,11 +194,11 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Media/locations/eastus/checkNameAvailability?api-version=2020-05-01 response: body: string: "{\r\n \"nameAvailable\":false,\"reason\":\"Invalid\",\"message\":\"The @@ -210,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Wed, 13 Jan 2021 01:18:42 GMT expires: - '-1' odata-version: @@ -228,7 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -249,11 +251,11 @@ interactions: - -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: '' @@ -263,7 +265,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:39:58 GMT + - Wed, 13 Jan 2021 01:18:45 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml index 851c67b8ebf..c703d3116b7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "centralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "SystemAssigned"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '344' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l + - -n -g --storage-account -l --managed-identity User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"4653b8d1-eae1-4f1b-a72f-54dfe6f41f0c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '897' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:53 GMT + - Wed, 13 Jan 2021 01:20:05 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -n -g --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"4653b8d1-eae1-4f1b-a72f-54dfe6f41f0c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '897' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Wed, 13 Jan 2021 01:20:05 GMT expires: - '-1' odata-version: @@ -113,7 +117,8 @@ interactions: - request: body: '{"tags": {"key": "value"}, "location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}], "storageAuthentication": "System", "encryption": {"type": + "SystemKey"}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: - application/json @@ -124,33 +129,35 @@ interactions: Connection: - keep-alive Content-Length: - - '331' + - '443' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"4653b8d1-eae1-4f1b-a72f-54dfe6f41f0c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '699' + - '930' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Wed, 13 Jan 2021 01:20:08 GMT expires: - '-1' odata-version: @@ -164,7 +171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -183,27 +190,30 @@ interactions: - -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"mediaServiceId\":\"4653b8d1-eae1-4f1b-a72f-54dfe6f41f0c\",\"storageAccounts\":[\r\n + \ \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n + \ \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '767' + - '1014' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Wed, 13 Jan 2021 01:20:08 GMT expires: - '-1' odata-version: @@ -238,26 +248,28 @@ interactions: - -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"4653b8d1-eae1-4f1b-a72f-54dfe6f41f0c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '699' + - '930' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Wed, 13 Jan 2021 01:20:08 GMT expires: - '-1' odata-version: @@ -294,11 +306,11 @@ interactions: - -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: '' @@ -308,7 +320,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:39:59 GMT + - Wed, 13 Jan 2021 01:20:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml new file mode 100644 index 00000000000..d800fbad775 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -0,0 +1,783 @@ +interactions: +- request: + body: '{"location": "centralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}]}, "identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account create + Connection: + - keep-alive + Content-Length: + - '344' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --storage-account -l --managed-identity + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central + US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '897' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:19:20 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + ParameterSetName: + - --name -g --enable-soft-delete --enable-purge-protection + 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.15.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":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-13T01:18:19Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '431' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.2 (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":"508c96e0-d4ff-4c30-b886-34c377353339","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","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","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":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"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-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-12-22T11:29:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2020-11-03T22:16:58Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-10-29T23:29:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2020-10-17T07:34:24Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2020-08-14T22:41:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T13:46:47Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-05T02:07:54Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-08-08T09:15:42Z","creationType":null,"department":"Azure + Media Srvc SWE R&D 1010","dirSyncEnabled":true,"displayName":"Himani Vyas","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Himani","immutableId":"1288805","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER","lastDirSyncTime":"2020-11-05T14:58:27Z","legalAgeGroupClassification":null,"mail":"Himani.Vyas@microsoft.com","mailNickname":"hivyas","mobile":null,"onPremisesDistinguishedName":"CN=Himani + Vyas,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-37530395","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"43/4Q10","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"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":"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":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=279f56e025554d2b8486a80e06283c65-Himani + Vyas","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=7955093e03494ca4847a2240d6994d4a-Himani + Vyas","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=14152fdb734040d0b2971335a1b52018-Himani + Vyas","smtp:hivyas@microsoft.onmicrosoft.com","smtp:hivyas@service.microsoft.com","smtp:hivyas@microsoft.com","SMTP:Himani.Vyas@microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-16T17:51:27Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"hivyas@microsoft.com","state":null,"streetAddress":null,"surname":"Vyas","telephoneNumber":"+1 + (425) 4216510","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/508c96e0-d4ff-4c30-b886-34c377353339/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"hivyas@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"43","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"226","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"428413","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Akasapu, + Girish","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"GIAKAS","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P60433","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91942155","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"60433","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1288805"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '16736' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Wed, 13 Jan 2021 01:19:21 GMT + duration: + - '513548' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - SwDT4EczDKSSGLz3c/tJ2r5m4YKhF43Wgixnn3FDT60= + ocp-aad-session-key: + - RgJXMdgcDRz0gThxrAbCuMhQ9Q5H_gv49egj145nnonVzDfPhX7JtOU5XUFoZk7aI_OzFmikvtW9EmMKtWWJNIJCBRBeD7OGbSaNLSvl9PkyPF-t4eF4Gx-ISBXJNbtT.l04LyYOLqh9wGL3qK6v9dZfifO6raj58WWhowCRQZIk + pragma: + - no-cache + request-id: + - ef1c072a-3b31-4868-bef6-fa69b181adbf + 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: 200 + message: OK +- request: + body: '{"location": "centralus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "508c96e0-d4ff-4c30-b886-34c377353339", + "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"]}}], + "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": + true, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + Content-Length: + - '909' + Content-Type: + - application/json + ParameterSetName: + - --name -g --enable-soft-delete --enable-purge-protection + User-Agent: + - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (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/clitest000003?api-version=2019-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1189' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19: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-ms-keyvault-service-version: + - 1.1.163.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - 0 + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.2 (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://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 + response: + body: + string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer + or PoP token."}}' + headers: + cache-control: + - no-cache + content-length: + - '87' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + resource="https://vault.azure.net" + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=167.220.2.205;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - centralus + x-ms-keyvault-service-version: + - 1.2.99.0 + x-powered-by: + - ASP.NET + status: + code: 401 + message: Unauthorized +- request: + body: '{"kty": "RSA", "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '47' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.2 (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://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 + response: + body: + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vnBSwOIH2QkSQeGppmeDYhB3OE1o5dcPiCZh_HK8gCNrEd6Fd3fA4tI5P6E7TE8r15pV2BFnuhBmr5DoYtiXvzLma_SwYf7VkTM56nmf1p-YBALNI_UjxpQm9tThY3n5-bSBGvrIpXOwSt2FSypfsPuDUGaO27N88TXQLrzRpOdC5ERmdCP1bQmktZVKmZNGy6hy_QvG4vt46DC0AO2qWsr9BQXJZK54l05eWd9LxjNrngBqZn4pbu7ksMXByr16nt-oXIGzfQ1adfdqbpcOzIvnK3tghwo-tCMnRhNxr3T0E6JH7FmsEVFcad-6XdSNKc1shVwXEcnwNDYmq2bTSQ","e":"AQAB"},"attributes":{"enabled":true,"created":1610500764,"updated":1610500764,"recoveryLevel":"Recoverable"}}' + headers: + cache-control: + - no-cache + content-length: + - '661' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=167.220.2.205;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - centralus + x-ms-keyvault-service-version: + - 1.2.99.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --object-id --name --key-permissions + User-Agent: + - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AmsUXIntegrationTesting/providers/Microsoft.KeyVault/vaults/AmsUXIntegrationKeyStore","name":"AmsUXIntegrationKeyStore","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AmsUXIntegrationTesting/providers/Microsoft.KeyVault/vaults/AmsUXIntegrationTesting","name":"AmsUXIntegrationTesting","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/himanimediatest/providers/Microsoft.KeyVault/vaults/hivyaskv12171","name":"hivyaskv12171","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hivyasmediagroup/providers/Microsoft.KeyVault/vaults/hivyasvault","name":"hivyasvault","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hivyasresources/providers/Microsoft.KeyVault/vaults/hivyaskv151","name":"hivyaskv151","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hivyasresources/providers/Microsoft.KeyVault/vaults/hivyaskv152","name":"hivyaskv152","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hivyasresources/providers/Microsoft.KeyVault/vaults/hivyaskv171","name":"hivyaskv171","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamish/providers/Microsoft.KeyVault/vaults/giakastest","name":"giakastest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamish/providers/Microsoft.KeyVault/vaults/giakastest2180011363","name":"giakastest2180011363","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamish/providers/Microsoft.KeyVault/vaults/giakastest3","name":"giakastest3","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamish-rs-EastUS/providers/Microsoft.KeyVault/vaults/pamishkeyvault","name":"pamishkeyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamish-rs-EastUS/providers/Microsoft.KeyVault/vaults/pamishkeyVault2","name":"pamishkeyVault2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3144' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - --object-id --name --key-permissions + User-Agent: + - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1189' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19:24 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-keyvault-service-version: + - 1.1.163.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "centralus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "508c96e0-d4ff-4c30-b886-34c377353339", + "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"]}}, + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "4464a818-5755-406a-b205-31493e0012a8", + "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", + "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": + 90, "enablePurgeProtection": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + Content-Length: + - '1111' + Content-Type: + - application/json + ParameterSetName: + - --object-id --name --key-permissions + User-Agent: + - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (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/clitest000003?api-version=2019-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4464a818-5755-406a-b205-31493e0012a8","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1344' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:19:24 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-keyvault-service-version: + - 1.1.163.0 + 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: + - ams account encryption set + Connection: + - keep-alive + ParameterSetName: + - -a -g --key-source --key-vault-id + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central + US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '897' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:19:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1"}}}, + "identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account encryption set + Connection: + - keep-alive + Content-Length: + - '528' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -a -g --key-source --key-vault-id + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central + US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1183' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:19:28 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account encryption show + Connection: + - keep-alive + ParameterSetName: + - -a -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central + US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1183' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:19:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams account delete + Connection: + - keep-alive + Content-Length: + - '0' + 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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 Jan 2021 01:19: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-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 Jan 2021 01:19:38 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-keyvault-service-version: + - 1.1.163.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml index db91ded4db9..9efde52628f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiasoutheast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '313' + - '343' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"bc42f704-bf6b-46db-9171-2568d441ef15\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"77e32eda-a27a-4259-9bec-4c677a091138\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '675' + - '793' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:30 GMT + - Wed, 13 Jan 2021 01:20:54 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -76,25 +78,25 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"e3bc657d-64f7-4d07-b0b6-d39dc31e43a8\",\"created\":\"2020-09-25T21:41:31.74Z\",\"lastModified\":\"2020-09-25T21:41:31.74Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"0014e9e5-9baf-4175-b9f1-5256a75b029b\",\"created\":\"2021-01-13T01:20:56.413Z\",\"lastModified\":\"2021-01-13T01:20:56.413Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '532' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:33 GMT + - Wed, 13 Jan 2021 01:20:57 GMT expires: - '-1' odata-version: @@ -131,15 +133,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"72e533c0-782b-4584-8b65-e2f8fe38ffcb\",\"created\":\"2020-09-25T21:41:34.413Z\",\"lastModified\":\"2020-09-25T21:41:34.413Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"dfd20bd0-8e9e-48a0-829c-660ecc748bf8\",\"created\":\"2021-01-13T01:20:58.903Z\",\"lastModified\":\"2021-01-13T01:20:58.903Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:35 GMT + - Wed, 13 Jan 2021 01:20:59 GMT expires: - '-1' odata-version: @@ -163,7 +165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -187,15 +189,15 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:36.5532278Z\",\"lastModified\":\"2020-09-25T21:41:36.5532278Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:21:01.140972Z\",\"lastModified\":\"2021-01-13T01:21:01.140972Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -203,11 +205,11 @@ interactions: cache-control: - no-cache content-length: - - '648' + - '646' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:36 GMT + - Wed, 13 Jan 2021 01:21:01 GMT expires: - '-1' odata-version: @@ -221,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -247,29 +249,30 @@ interactions: - -t -a -g -n --input-asset-name --output-assets --priority --label --correlation-data User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.0076461Z\",\"state\":\"Queued\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.824924Z\",\"state\":\"Scheduled\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n - \ ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2020-09-25T21:41:38.0076461Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n + \ },\"lastModified\":\"2021-01-13T01:21:02.824924Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '849' + - '890' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:38 GMT + - Wed, 13 Jan 2021 01:21:04 GMT expires: - '-1' odata-version: @@ -302,29 +305,30 @@ interactions: - -a -n -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.007Z\",\"state\":\"Queued\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n - \ ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2020-09-25T21:41:38.007Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n + \ },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '841' + - '967' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:39 GMT + - Wed, 13 Jan 2021 01:21:05 GMT expires: - '-1' odata-version: @@ -359,11 +363,11 @@ interactions: - -a -n -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000008?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000008?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -378,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:41:40 GMT + - Wed, 13 Jan 2021 01:21:06 GMT expires: - '-1' pragma: @@ -407,30 +411,31 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.007Z\",\"state\":\"Queued\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n - \ \r\n ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2020-09-25T21:41:38.007Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ \r\n ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n + \ \r\n ],\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n }\r\n + \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '925' + - '1059' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:41 GMT + - Wed, 13 Jan 2021 01:21:08 GMT expires: - '-1' odata-version: @@ -465,29 +470,30 @@ interactions: - -a -n -g -t --description --priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.007Z\",\"state\":\"Queued\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n - \ ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2020-09-25T21:41:38.007Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n + \ },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '841' + - '967' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:42 GMT + - Wed, 13 Jan 2021 01:21:09 GMT expires: - '-1' odata-version: @@ -530,29 +536,30 @@ interactions: - -a -n -g -t --description --priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.007Z\",\"state\":\"Queued\",\"description\":\"someDescription\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"description\":\"someDescription\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n - \ ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2020-09-25T21:41:44.949677Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n + \ },\"lastModified\":\"2021-01-13T01:21:11.192276Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"Low\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '875' + - '1001' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:44 GMT + - Wed, 13 Jan 2021 01:21:10 GMT expires: - '-1' odata-version: @@ -591,11 +598,11 @@ interactions: - -n -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007/cancelJob?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007/cancelJob?api-version=2020-05-01 response: body: string: '' @@ -605,7 +612,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:41:45 GMT + - Wed, 13 Jan 2021 01:21:12 GMT expires: - '-1' pragma: @@ -636,29 +643,30 @@ interactions: - -a -n -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:41:38.007Z\",\"state\":\"Canceling\",\"description\":\"someDescription\",\"input\":{\r\n + \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Canceling\",\"description\":\"someDescription\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n - \ ],\"label\":\"someLabel\",\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2020-09-25T21:41:44.95Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Scheduled\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n + \ },\"lastModified\":\"2021-01-13T01:21:11.193Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Canceling\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"Low\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '877' + - '996' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:47 GMT + - Wed, 13 Jan 2021 01:21:13 GMT expires: - '-1' odata-version: @@ -695,11 +703,11 @@ interactions: - -n -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": @@ -716,7 +724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:41:48 GMT + - Wed, 13 Jan 2021 01:21:14 GMT expires: - '-1' pragma: @@ -749,11 +757,11 @@ interactions: - -n -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 response: body: string: '' @@ -763,7 +771,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:41:54 GMT + - Wed, 13 Jan 2021 01:21:21 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml index e6f3fe8ec6b..17dcc6854f9 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"edbc8122-7f5a-4abf-856a-ffc07a679703\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:29 GMT + - Wed, 13 Jan 2021 01:23:29 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"edbc8122-7f5a-4abf-856a-ffc07a679703\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:29 GMT + - Wed, 13 Jan 2021 01:23:31 GMT expires: - '-1' odata-version: @@ -125,7 +129,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET @@ -145,19 +149,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:31 GMT duration: - - '1333289' + - '889747' expires: - '-1' ocp-aad-diagnostics-server-name: - - MMNpM+Iz2yBvvf+Oc4D7IA0nZD5jNPjSkaGpHqkyRbc= + - BaUpzbcpe8CsfbLiSVe623GjwTzlV5c+gfKgkBtBCJY= ocp-aad-session-key: - - -1P8PDbanOR6HfUZOxejsfcUIn605zE6lr1Cwo-uicvF93853AJEG0DQccC4o4HbiQB7RwcbuLLPpezGVuTFsGXUEfW6c4ystFBYAeSOsyeoIuDKuXKM3oOGqmPLqfIaITI2sgh4CMRWzG0IpUwd8kLUGnuqt3Mi4_fuSW__Ukc.6aLgDhn_zKQAj3PWa_klbkZlNJ6lyLiXHk2GYEAV3hs + - jodq9Oq2yvOVmYpAjmMYgtlQkkVTcKm8YVwL5CccWMvR_VSbV8kyOPCX-qpKHc55HrV9piwW9ox_hSXMsUxfgLELMhFwcwqwzhBThXhp5sx_vtBmP7mL_4P6_oQY70vw.Z1ChfZ-bG6z5KLG4BiG3dYUBmGy7bYaHlZT3nOr3QSs pragma: - no-cache request-id: - - 19be0893-72b7-4cb9-9543-0e1539e64d5f + - 2263b270-4f1f-466f-b904-5d7649dec4a2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -173,8 +177,8 @@ interactions: message: OK - request: body: '{"availableToOtherTenants": false, "homepage": "http://clitest.rg000001", - "passwordCredentials": [{"startDate": "2020-09-25T21:43:30.703511Z", "endDate": - "2021-09-25T21:43:30.703511Z", "keyId": "88888888-0000-0000-0000-000000000001", + "passwordCredentials": [{"startDate": "2021-01-13T01:23:33.52375Z", "endDate": + "2022-01-13T01:23:33.52375Z", "keyId": "88888888-0000-0000-0000-000000000001", "value": "ReplacedSPPassword123*"}], "displayName": "clitest.rg000001", "identifierUris": ["http://clitest.rg000001"]}' headers: @@ -187,14 +191,14 @@ interactions: Connection: - keep-alive Content-Length: - - '523' + - '521' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST @@ -203,28 +207,28 @@ interactions: body: string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", - "objectId": "e84d9990-fa50-4101-977b-4361d93a8ad0", "deletionTimestamp": null, - "acceptMappedClaims": null, "addIns": [], "appId": "d7c8e727-9122-4a96-92e1-4d3a764e4e3b", + "objectId": "761d1e6e-e3c9-4209-992c-e5bd2900d209", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "ec4504d6-e01b-4b6b-b926-e7976363753e", "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": false, "displayName": "clitest.rg000001", "errorUrl": null, "groupMembershipClaims": null, "homepage": "http://clitest.rg000001", "identifierUris": ["http://clitest.rg000001"], "informationalUrls": {"termsOfService": null, "support": null, "privacy": null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": - "directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/logo", + "directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo", "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", - "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/mainLogo", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo", "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": "Allow the application to access clitest.rg000001 on behalf of the signed-in - user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "799cfa53-9d45-437e-b4ca-45c1c3b6b41c", + user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "d2e96590-98b5-4e52-99b1-7ad31dbcee20", "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application to access clitest.rg000001 on your behalf.", "userConsentDisplayName": "Access clitest.rg000001", "value": "user_impersonation"}], "oauth2RequirePostResponse": false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": - [{"customKeyIdentifier": null, "endDate": "2021-09-25T21:43:30.703511Z", "keyId": - "88888888-0000-0000-0000-000000000001", "startDate": "2020-09-25T21:43:30.703511Z", + [{"customKeyIdentifier": null, "endDate": "2022-01-13T01:23:33.52375Z", "keyId": + "88888888-0000-0000-0000-000000000001", "startDate": "2021-01-13T01:23:33.52375Z", "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": @@ -235,27 +239,27 @@ interactions: cache-control: - no-cache content-length: - - '2684' + - '2682' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:32 GMT duration: - - '2926865' + - '6211795' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - T8XZkzrl2aupEbCD6UYjY32Rv0txL1m39kZkE588G30= + - H9an+qrvBeT3NN3b3xSppbQhDiR9CXe5UeASTHq/18Y= ocp-aad-session-key: - - P-8kpw1kNYlHjwomqvj7Bg1gQvlqp_d0ric_zvVAX-mRbUgbeFpi7clsh0NWOU-GSqDUn-wZfYXUZx-sUhEfkJBegiYsZFYZlZz5_E2JwecpCcgxrxaXxl_DX3aPgpU98xx6sMTMyi5V7UrvNXw41oMifNCL2GeCNSjv5XeLwbI.f9YH9reUs-bxHnlOZpL3vRCWm3AqAd16NA_MlRLD2SY + - kUpUL4BTLT_S3ppufaQ1bW8j-m0mo-A0MxPPvl6lWDNjEv1DYskwPYFoRqr_TvaH4MRRIRPfgkXHUF1RJqIQ6-gCjQnBeSso4lfDkvQMOioxPDR3NFDhdmXLQ6bjUlfNHNTCmG2WMk3Zyz4oGnq_GjkX8Z81klSlmLyYLAokDOE.mel86VgErMlPD4TMxkEJtLtqv2Nt-XmoHVtn-citEZg pragma: - no-cache request-id: - - a88b8c2b-6f15-46ac-b89e-264945c0dc2e + - e0c978ea-e492-40d0-bb1e-94fca3ab18be strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -270,7 +274,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "d7c8e727-9122-4a96-92e1-4d3a764e4e3b"}' + body: '{"accountEnabled": "True", "appId": "ec4504d6-e01b-4b6b-b926-e7976363753e"}' headers: Accept: - application/json @@ -288,18 +292,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.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":"14bf1155-ba84-40d8-a0e7-f84669d447bc","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d7c8e727-9122-4a96-92e1-4d3a764e4e3b","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["d7c8e727-9122-4a96-92e1-4d3a764e4e3b","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["ec4504d6-e01b-4b6b-b926-e7976363753e","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' @@ -312,21 +316,21 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:33 GMT duration: - - '1901471' + - '3623115' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/14bf1155-ba84-40d8-a0e7-f84669d447bc/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/bf75307c-0eec-441c-95d0-9ee87c40b7b6/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - YPZ+mmPL+OBXd1POeb7UT5BEZEjGrQEKHfYavB10Rao= + - osGKancLhd8UTEy9Q1DbwbQ0zPgJWv66y2a6AqlkY7w= ocp-aad-session-key: - - G13W0IVTYfh0EBRenXt4wJs8nzYm0l1btrAOT9CWoRtczNPTuJg-kiqsMu8ByUlL_5LllT7Cb62sb3JBXJ1wMkYND1-zhS7dC3tOU2CBqat2HSVmvmiWgIO7OOUFNe-pBUMrWHDUIBPD5rV08XnTxjbvbZ-c7BAWBbwsRcnz2g0.PxGOrAo9YFzBOi19AMmhTAXEXqnJOXj8UELhx_c61Dk + - 0Mtz1-nOFtMLudDD0zXJqNSyJWkH4MTNFbmxntmc0vjJ8rTM8swaLMtJhORmNM9v1eANZx28VVmqe7-3CaokLb6dYxZSzV5cgrcSGuPSdzbPgSCIlBZAT43GkX6FKS1B7fb9nvMPB2J8DWu1y8D6sq8TpKJ7thQsw7OwVvAJJ4E.qTRwGRH8ced9ZomtNBVgBZtxfRFbWN9OnoN3B3peeRE pragma: - no-cache request-id: - - 50a904c9-011f-4de3-8e45-4108a5884407 + - 22e43eee-1bc5-4161-96b1-ebb778e84a7e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -355,11 +359,11 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2714bf1155-ba84-40d8-a0e7-f84669d447bc%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27bf75307c-0eec-441c-95d0-9ee87c40b7b6%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -371,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:33 GMT expires: - '-1' pragma: @@ -404,7 +408,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET @@ -422,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:31 GMT + - Wed, 13 Jan 2021 01:23:34 GMT expires: - '-1' pragma: @@ -442,7 +446,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "14bf1155-ba84-40d8-a0e7-f84669d447bc"}}' + "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' headers: Accept: - application/json @@ -462,14 +466,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 14bf1155ba8440d8a0e7f84669d447bc + string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' headers: cache-control: @@ -479,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:31 GMT + - Wed, 13 Jan 2021 01:23:34 GMT expires: - '-1' pragma: @@ -491,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 400 message: Bad Request @@ -510,7 +514,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET @@ -528,7 +532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:37 GMT + - Wed, 13 Jan 2021 01:23:40 GMT expires: - '-1' pragma: @@ -548,7 +552,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "14bf1155-ba84-40d8-a0e7-f84669d447bc"}}' + "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' headers: Accept: - application/json @@ -568,14 +572,226 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14bf1155-ba84-40d8-a0e7-f84669d447bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2020-09-25T21:43:37.5848435Z","updatedOn":"2020-09-25T21:43:37.5848435Z","createdBy":null,"updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:23:40 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Owner%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants + full access to manage all resources, including the ability to assign roles + in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:13:58.4137852Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}]}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview + response: + body: + string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Owner%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants + full access to manage all resources, including the ability to assign roles + in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:13:58.4137852Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}]}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:23:52 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T01:23:52.5261492Z","updatedOn":"2021-01-13T01:23:52.6654841Z","createdBy":null,"updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000005"}' headers: cache-control: - no-cache @@ -584,7 +800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Wed, 13 Jan 2021 01:23:54 GMT expires: - '-1' pragma: @@ -596,7 +812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created @@ -615,26 +831,28 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"edbc8122-7f5a-4abf-856a-ffc07a679703\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Wed, 13 Jan 2021 01:23:54 GMT expires: - '-1' odata-version: @@ -669,18 +887,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 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%2Fclitest.rg000001%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.ServicePrincipal","objectType":"ServicePrincipal","objectId":"14bf1155-ba84-40d8-a0e7-f84669d447bc","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d7c8e727-9122-4a96-92e1-4d3a764e4e3b","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","d7c8e727-9122-4a96-92e1-4d3a764e4e3b"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","ec4504d6-e01b-4b6b-b926-e7976363753e"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -693,19 +911,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:54 GMT duration: - - '634639' + - '585585' expires: - '-1' ocp-aad-diagnostics-server-name: - - sYypgmyv9KLBQcszlFTAA6Klt8R5H4hoowy5e3DKXFI= + - NecIdAbtcl2G5DavAD0ay+NyJ0bZ8m4qvkKAOpQmV0w= ocp-aad-session-key: - - yFoOzY-OwBBd9N1a6P8ET6ERSq3Y-TRmlmG0ghprkFrO9HqytT05OirLaVi8_BvaOZN1shIroDaBZ5JlgPrbwAt0lS3GtNMsYh7Oby-5Q8YXSRUBSQFJF0KP_8tumdBXc9lZxkmfFkNuNwdngiEMxvWlAc_weGePa6PS6jxWqZo.URx-nDpPGqUu3JqE9fBk6Jy-y68zjmQBsyqgHdkK-OQ + - R2SuhBB_k9ymY89ZoHeuxzmmTo8zPU-AhZdznZfkFZ5kNhzwTgSrqmyf7bEYP-v53BENnYmoh1NHR1biz8hq3WrMMINr2mCaIzONePPjINOZjNMj8RSQ6Y9YUR7jYyKR_YapORw7t8v9xjGLHlsmMJan8_1lBJciBY3MpfyBDoE.pJ5B_b3OBR1EmZ1kJlpftmAPRK83qfFnHfUnayjY0jo pragma: - no-cache request-id: - - 5f4d7bcf-5a03-4dfe-bd2b-f9596602023d + - e7eda32b-4a25-48a1-bc5b-f21c21f04bd1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -734,43 +952,43 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27d7c8e727-9122-4a96-92e1-4d3a764e4e3b%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27ec4504d6-e01b-4b6b-b926-e7976363753e%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":"e84d9990-fa50-4101-977b-4361d93a8ad0","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"d7c8e727-9122-4a96-92e1-4d3a764e4e3b","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"761d1e6e-e3c9-4209-992c-e5bd2900d209","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-09-25T21:43:30.703511Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-09-25T21:43:30.703511Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","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: - - '2601' + - '2599' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:54 GMT duration: - - '705404' + - '560107' expires: - '-1' ocp-aad-diagnostics-server-name: - - Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0= + - d1JB6ucVep7/SQwUJWs6eqivZfWvC07ij1sG/PhNZn0= ocp-aad-session-key: - - R2fTg1MdVMKmTDG-6XTRJkosARjVE7PAEgJDQlEU84-XOUHIM2WYUzpHdlbXDJ7Sh4VZ1nBII897p0zXIimXgtjP7JJUaAlIDcSGaeW8uH6_Q6GBeNhbaZ1CoVu_WbTSqlDSDC4SvCaqYdytwJbOIBtde-8YHxS-jrXaweDa1N0.f1C2972PMT-YGciIyP_goFkUZNz3537sWBD08Mfx59Y + - LBqqHvLRedzEShSGK-DIoT-tyB1UKTp1GhJmQxmAR4p5BSuzl08L00Rxh11D3nWmXzNhmwLqAm_ABmLF4qiVs6BIsjBzKsNfjD-LFnsLJUmGUYqQeIaP2pwaIu8VkY1uXpxAek0FB9BYDkODvTNI0bf-OnEaEjsSut4x7V-jYB0.NZRd7XWeEtdrSfyEVEuz3NguUSSFtNQL_EsuWhGBo3w pragma: - no-cache request-id: - - b5763eaf-d74a-4e41-aaa6-a27bef0e6958 + - 912aa5a8-7234-4f69-93b1-0df8b94f8219 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -799,39 +1017,39 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/e84d9990-fa50-4101-977b-4361d93a8ad0/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2021-09-25T21:43:30.703511Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-09-25T21:43:30.703511Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","value":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '333' + - '331' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:54 GMT duration: - - '794122' + - '534977' expires: - '-1' ocp-aad-diagnostics-server-name: - - XIO7CE0QfI29gkv/rclFvwZFGDvkYaGDXU34KDUMF3Q= + - vdUmtydNTpMx136Z9PTgdhjXCVJ7LZw+B1PUKRqBNeo= ocp-aad-session-key: - - wuBsgysIaDuuZf_LH71ONvUkJ2PCY2jEtkuoo2DScMGUnkcCGVIQ90EeZpcy3bBWH4qoCwZAq9ZZ7PGeEFGRZ16jHMDcZlk_x9uzuWj6KKlcAA9IxlsYXqpTqdbg_8LAJV2zhUq0i_lfLUb1LUsgAdnDHoWVEqHaRG9Q4R85ty8.1XkZjcSMHe0OHraHk6ILvKoH3d2A2sVlT_Lw_4SxJn8 + - KFCtKVBeyTr1jpIXe16cicsB88O6YWDpFuH9dKLtnAtTca0CbvvBbflRiYdMEGfXvOeVn2Zqvx9eomluk5o1VgckICmxs3FdewTRcB9R2SZWN0sdTkF99208TK5oXWrEplacW4ESc_M7Ts94dusQpKDWQDzyDPUuoqWNHK3kXbo.5dvxjoYsw-dN6VsK247dS7WJMJjWVkv3IOCsE1a8Zu8 pragma: - no-cache request-id: - - a4a973f0-f967-49ab-afb0-d64b98901dc1 + - 7f0c59de-b2d1-4264-8d56-23a737f7a547 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -846,9 +1064,9 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2020-09-25T21:43:30.703511Z", "endDate": "2021-09-25T21:43:30.703511Z", - "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2020-09-25T21:43:40.827765Z", - "endDate": "2021-09-25T21:43:40.827765Z", "keyId": "88888888-0000-0000-0000-000000000004", + body: '{"value": [{"startDate": "2021-01-13T01:23:33.52375Z", "endDate": "2022-01-13T01:23:33.52375Z", + "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2021-01-13T01:23:56.302161Z", + "endDate": "2022-01-13T01:23:56.302161Z", "keyId": "88888888-0000-0000-0000-000000000006", "value": "spp!000005"}]}' headers: Accept: @@ -860,18 +1078,18 @@ interactions: Connection: - keep-alive Content-Length: - - '314' + - '312' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/e84d9990-fa50-4101-977b-4361d93a8ad0/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209/passwordCredentials?api-version=1.6 response: body: string: '' @@ -881,19 +1099,19 @@ interactions: cache-control: - no-cache date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:54 GMT duration: - - '2482878' + - '4698927' expires: - '-1' ocp-aad-diagnostics-server-name: - - susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M= + - +EOS4aiuOEFJVZdbhjMw16/+oK92lidT3YUz+JU856Q= ocp-aad-session-key: - - 40TXkV8V5B4FIFjaN_zADpZ1diyUegXq_F7xa4LeLZ5hh2loCXxDzxf5AQfuHeTvm9eVM2J-rFU4RiKK7Nb41P51-_19Yz4a8WXXHOua4JR3NgIGoNJE6T8NEYSFbB6-jd_TxzFAQO6PdUhv6AN52cGHV6nma9_yX6QgU61ukKY.CMD3WaITuEhOFtM0nCQonDJPzofqtVUKj2HEN-dD5XQ + - 6SgMm__HYHIIKWEayKF1OuaklL38BxO57jUV_QXEsFP5uQzUIJj33byhHBr3I9wWjI7juDOZ3s5t2DROFqTv23iaMjzCEXdWbd59rK2lx8XDDOSBlop7i-A3QoCFv_sCFLzZUMANFKofSjDshdIAXPf7EUK9b2Cd6p78dvPM3wU.Mw07igz-txV1JyLR11JYJyz9GEGhqOOSxKZXEwKzefw pragma: - no-cache request-id: - - 0486d748-d85b-4814-8914-d18cf3da57fa + - e1c1d12e-c6dd-4cac-9938-5cc3f9083dc2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -922,14 +1140,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2714bf1155-ba84-40d8-a0e7-f84669d447bc%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27bf75307c-0eec-441c-95d0-9ee87c40b7b6%27&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14bf1155-ba84-40d8-a0e7-f84669d447bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2020-09-25T21:43:39.1216040Z","updatedOn":"2020-09-25T21:43:39.1216040Z","createdBy":"508c96e0-d4ff-4c30-b886-34c377353339","updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T01:23:53.1964431Z","updatedOn":"2021-01-13T01:23:53.1964431Z","createdBy":"508c96e0-d4ff-4c30-b886-34c377353339","updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000005"}]}' headers: cache-control: - no-cache @@ -938,7 +1156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:55 GMT expires: - '-1' pragma: @@ -973,7 +1191,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET @@ -1082,13 +1300,13 @@ interactions: create, read, update, delete and manage keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.CognitiveServices/*\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:18:39.2257848Z\",\"updatedOn\":\"2018-09-14T00:53:37.7546808Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"},{\"properties\":{\"roleName\":\"CosmosBackupOperator\",\"type\":\"BuiltInRole\",\"description\":\"Can submit restore request for a Cosmos DB database or a container for an account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/databaseAccounts/backup/action\",\"Microsoft.DocumentDB/databaseAccounts/restore/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-07T19:47:14.9651560Z\",\"updatedOn\":\"2018-12-07T19:52:21.9969834Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"},{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access to manage all resources, but does not allow you to assign roles - in Azure RBAC.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-08-14T20:15:12.5169529Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"},{\"properties\":{\"roleName\":\"Cosmos + in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\",\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-12-04T00:34:54.8501087Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"},{\"properties\":{\"roleName\":\"Cosmos DB Account Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Can read Azure Cosmos DB Accounts data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDB/*/read\",\"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\"Microsoft.Insights/MetricDefinitions/read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-10-30T17:53:54.6005577Z\",\"updatedOn\":\"2018-02-21T01:36:59.6186231Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"},{\"properties\":{\"roleName\":\"Cost Management Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can view - costs and manage cost configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*\",\"Microsoft.CostManagement/*\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2019-06-25T21:25:06.8686379Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434105ed-43f6-45c7-a02f-909b2ba83430\"},{\"properties\":{\"roleName\":\"Cost + costs and manage cost configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*\",\"Microsoft.CostManagement/*\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2020-12-07T19:54:47.1563148Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434105ed-43f6-45c7-a02f-909b2ba83430\"},{\"properties\":{\"roleName\":\"Cost Management Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view cost - data and configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2019-06-25T20:59:11.5762937Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"72fafb9e-0641-4937-9268-a91bfd8191a3\"},{\"properties\":{\"roleName\":\"Data + data and configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2020-12-07T19:53:58.6391267Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"72fafb9e-0641-4937-9268-a91bfd8191a3\"},{\"properties\":{\"roleName\":\"Data Box Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything under Data Box Service except giving access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Databox/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:28:42.7140210Z\",\"updatedOn\":\"2018-07-27T08:36:56.3827309Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"add466c9-e687-43fc-8d98-dfcf8d720be5\"},{\"properties\":{\"roleName\":\"Data Box Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Data @@ -1158,7 +1376,7 @@ interactions: Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage networks, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2016-05-31T23:14:00.3326359Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4d97b98b-1d4f-4787-a291-c67834d212e7\"},{\"properties\":{\"roleName\":\"Monitoring Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read all monitoring - data and update monitoring settings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.AlertsManagement/alerts/*\",\"Microsoft.AlertsManagement/alertsSummary/*\",\"Microsoft.Insights/actiongroups/*\",\"Microsoft.Insights/activityLogAlerts/*\",\"Microsoft.Insights/AlertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/dataCollectionRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/eventtypes/*\",\"Microsoft.Insights/LogDefinitions/*\",\"Microsoft.Insights/metricalerts/*\",\"Microsoft.Insights/MetricDefinitions/*\",\"Microsoft.Insights/Metrics/*\",\"Microsoft.Insights/Register/Action\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/webtests/*\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/privateLinkScopes/*\",\"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.WorkloadMonitor/notificationSettings/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2020-08-05T17:43:52.8986202Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"},{\"properties\":{\"roleName\":\"New + data and update monitoring settings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.AlertsManagement/alerts/*\",\"Microsoft.AlertsManagement/alertsSummary/*\",\"Microsoft.Insights/actiongroups/*\",\"Microsoft.Insights/activityLogAlerts/*\",\"Microsoft.Insights/AlertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/dataCollectionRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/eventtypes/*\",\"Microsoft.Insights/LogDefinitions/*\",\"Microsoft.Insights/metricalerts/*\",\"Microsoft.Insights/MetricDefinitions/*\",\"Microsoft.Insights/Metrics/*\",\"Microsoft.Insights/Register/Action\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/webtests/*\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/privateLinkScopes/*\",\"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2020-11-18T00:02:00.4868141Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"},{\"properties\":{\"roleName\":\"New Relic APM Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"NewRelic.APM/accounts/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-02-05T20:42:16.2033878Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d28c62d-5b37-4476-8438-e587778df237\"},{\"properties\":{\"roleName\":\"Owner\",\"type\":\"BuiltInRole\",\"description\":\"Grants @@ -1180,7 +1398,7 @@ interactions: Admin\",\"type\":\"BuiltInRole\",\"description\":\"Security Admin Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/policyExemptions/*\",\"Microsoft.Authorization/policySetDefinitions/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2020-08-20T19:15:25.4574979Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb1c8493-542b-48eb-b624-b4c8fea62acd\"},{\"properties\":{\"roleName\":\"Security Manager (Legacy)\",\"type\":\"BuiltInRole\",\"description\":\"This is a legacy role. Please use Security Administrator instead\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/*/read\",\"Microsoft.ClassicCompute/virtualMachines/*/write\",\"Microsoft.ClassicNetwork/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-22T17:45:15.8986455Z\",\"updatedOn\":\"2018-03-08T18:18:48.6183620Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"},{\"properties\":{\"roleName\":\"Security - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Security Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*/read\",\"Microsoft.Support/*/read\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:48:49.0516559Z\",\"updatedOn\":\"2020-07-26T14:03:23.7325023Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"},{\"properties\":{\"roleName\":\"Spatial + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Security Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*/read\",\"Microsoft.Support/*/read\",\"Microsoft.Security/iotDefenderSettings/packageDownloads/action\",\"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\",\"Microsoft.Security/iotSensors/downloadResetPassword/action\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:48:49.0516559Z\",\"updatedOn\":\"2021-01-04T13:31:17.6216549Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"},{\"properties\":{\"roleName\":\"Spatial Anchors Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage spatial anchors in your account, but not delete them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:41.1420864Z\",\"updatedOn\":\"2019-02-13T06:13:39.8686435Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"},{\"properties\":{\"roleName\":\"Site Recovery Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you @@ -1198,16 +1416,16 @@ interactions: give access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/networkSecurityGroups/*\",\"Microsoft.Network/routeTables/*\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/locations/instanceFailoverGroups/*\",\"Microsoft.Sql/managedInstances/*\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/*\",\"Microsoft.Network/virtualNetworks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-10T22:57:14.2937983Z\",\"updatedOn\":\"2020-09-23T23:26:54.2667459Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"},{\"properties\":{\"roleName\":\"SQL DB Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related - policies or their parent SQL servers.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/databases/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/auditingPolicies/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/connectionPolicies/*\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-02-28T22:44:35.8649670Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"},{\"properties\":{\"roleName\":\"SQL + policies or their parent SQL servers.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/databases/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-10-19T18:19:24.4927972Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"},{\"properties\":{\"roleName\":\"SQL Security Manager\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage the security-related policies of SQL servers and databases, but not access - to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingPolicies/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/auditingPolicies/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/connectionPolicies/*\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/read\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/firewallRules/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Support/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2020-09-23T23:25:15.7420400Z\",\"createdBy\":null,\"updatedBy\":\"yaiyun\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"},{\"properties\":{\"roleName\":\"Storage + to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/read\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/firewallRules/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Support/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\",\"Microsoft.Security/sqlVulnerabilityAssessments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2020-12-10T11:34:15.2596059Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"},{\"properties\":{\"roleName\":\"Storage Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2019-05-29T20:56:33.9582501Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"17d1049b-9a84-46fb-8f53-869881c3d3ab\"},{\"properties\":{\"roleName\":\"SQL Server Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage SQL servers and databases, but not access to them, and not their security - -related policies.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/*\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingPolicies/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditingPolicies/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/connectionPolicies/*\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-09-11T22:12:29.5813551Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"},{\"properties\":{\"roleName\":\"Storage + -related policies.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/*\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-10-19T17:59:33.6870200Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"},{\"properties\":{\"roleName\":\"Storage Account Key Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:26:11.5770570Z\",\"updatedOn\":\"2017-04-13T20:57:14.5990198Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"81a9662b-bebf-436f-a333-f67b29880f12\"},{\"properties\":{\"roleName\":\"Storage Blob Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows @@ -1287,11 +1505,11 @@ interactions: published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprintAssignments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:56:48.7897875Z\",\"updatedOn\":\"2019-08-17T00:06:02.6509737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"437d2ced-4a38-4302-8479-ed2bcb43d090\"},{\"properties\":{\"roleName\":\"Azure Sentinel Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2020-03-11T15:20:51.6768533Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Azure + Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2020-11-04T07:51:14.5680135Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Azure Sentinel Responder\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.SecurityInsights/incidents/*\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2020-09-16T10:47:30.3617690Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Azure + Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/automationRules/*\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.SecurityInsights/incidents/*\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/cases/*/Delete\",\"Microsoft.SecurityInsights/incidents/*/Delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2020-12-08T13:06:10.4848344Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Azure Sentinel Reader\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2020-09-24T12:18:24.7248062Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Workbook + Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2020-11-04T07:55:29.9187377Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Workbook Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2019-08-28T21:43:05.0202124Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"},{\"properties\":{\"roleName\":\"Workbook Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can save shared workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/workbooks/write\",\"Microsoft.Insights/workbooks/delete\",\"Microsoft.Insights/workbooks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2020-01-22T00:05:20.9387210Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"},{\"properties\":{\"roleName\":\"Policy Insights Data Writer (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows @@ -1335,17 +1553,15 @@ interactions: on entities, without providing access to the entities themselves.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Resources/subscriptions/resources/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\",\"Microsoft.Resources/tags/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-18T23:19:19.2977644Z\",\"updatedOn\":\"2020-02-19T00:04:58.9214962Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"},{\"properties\":{\"roleName\":\"Integration Service Environment Developer\",\"type\":\"BuiltInRole\",\"description\":\"Allows developers to create and update workflows, integration accounts and API connections - in integration service environments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/read\",\"Microsoft.Logic/integrationServiceEnvironments/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:09:00.5627875Z\",\"updatedOn\":\"2020-02-20T21:36:24.6190730Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"},{\"properties\":{\"roleName\":\"Integration + in integration service environments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/read\",\"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:09:00.5627875Z\",\"updatedOn\":\"2020-12-13T02:18:15.6697797Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"},{\"properties\":{\"roleName\":\"Integration Service Environment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage integration service environments, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:10:44.4008319Z\",\"updatedOn\":\"2020-02-20T21:41:56.7983599Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"},{\"properties\":{\"roleName\":\"Marketplace - Admin\",\"type\":\"BuiltInRole\",\"description\":\"Administrator of marketplace - resource provider\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Marketplace/privateStores/write\",\"Microsoft.Marketplace/privateStores/action\",\"Microsoft.Marketplace/privateStores/delete\",\"Microsoft.Marketplace/privateStores/offers/write\",\"Microsoft.Marketplace/privateStores/offers/action\",\"Microsoft.Marketplace/privateStores/offers/delete\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-26T14:19:50.9681015Z\",\"updatedOn\":\"2020-06-23T05:54:42.8370671Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dd920d6d-f481-47f1-b461-f338c46b2d9f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dd920d6d-f481-47f1-b461-f338c46b2d9f\"},{\"properties\":{\"roleName\":\"Azure + you manage integration service environments, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:10:44.4008319Z\",\"updatedOn\":\"2020-02-20T21:41:56.7983599Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"},{\"properties\":{\"roleName\":\"Azure Kubernetes Service Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants access to read and write Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2020-02-28T02:34:14.5162305Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"},{\"properties\":{\"roleName\":\"Azure - Digital Twins Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read-only - role for Digital Twins data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/read\",\"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\"Microsoft.DigitalTwins/eventroutes/read\",\"Microsoft.DigitalTwins/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2020-07-01T17:50:50.2393244Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"},{\"properties\":{\"roleName\":\"Azure - Digital Twins Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Full - access role for Digital Twins data-plane\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/eventroutes/*\",\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2020-03-10T23:49:33.7821930Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"},{\"properties\":{\"roleName\":\"Hierarchy + Digital Twins Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + role for Digital Twins data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/read\",\"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\"Microsoft.DigitalTwins/eventroutes/read\",\"Microsoft.DigitalTwins/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2020-10-22T21:06:59.5157226Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"},{\"properties\":{\"roleName\":\"Azure + Digital Twins Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full + access role for Digital Twins data-plane\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/eventroutes/*\",\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2020-10-22T21:07:31.8108410Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"},{\"properties\":{\"roleName\":\"Hierarchy Settings Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Allows users to edit and delete Hierarchy Settings\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/settings/write\",\"Microsoft.Management/managementGroups/settings/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-03-13T23:55:11.0212387Z\",\"updatedOn\":\"2020-03-13T23:58:46.9249866Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"350f8d15-c687-4448-8ae1-157740a3936d\"},{\"properties\":{\"roleName\":\"FHIR Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Role allows @@ -1356,7 +1572,7 @@ interactions: or principal to read FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:49:04.8353499Z\",\"updatedOn\":\"2020-03-17T18:49:04.8353499Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"},{\"properties\":{\"roleName\":\"FHIR Data Writer\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user or principal to read and write FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\"]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2020-03-17T18:55:35.2413335Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f88fce4-5892-4214-ae73-ba5294559913\"},{\"properties\":{\"roleName\":\"Experimentation - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-25T18:05:14.8375678Z\",\"updatedOn\":\"2020-04-22T21:20:46.2737555Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"},{\"properties\":{\"roleName\":\"Object + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-25T18:05:14.8375678Z\",\"updatedOn\":\"2021-01-11T18:32:43.8283983Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"},{\"properties\":{\"roleName\":\"Object Understanding Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Provides user with ingestion capabilities for Azure Object Understanding.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-04-22T19:15:09.0697923Z\",\"updatedOn\":\"2020-04-22T19:15:09.0697923Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4dd61c23-6743-42fe-a388-d8bdd41cb745\"},{\"properties\":{\"roleName\":\"Azure Maps Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants @@ -1403,41 +1619,48 @@ interactions: of key vaults and its certificates, keys, and secrets. Cannot read sensitive values such as secret contents or key material. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2949294Z\",\"updatedOn\":\"2020-08-28T21:06:06.6209313Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21090545-7ca7-4776-b22c-e363652d74d2\"},{\"properties\":{\"roleName\":\"Key - Vault Crypto Service Encryption (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read + Vault Crypto Service Encryption User (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read metadata of keys and perform wrap/unwrap operations. Only works for key vaults - that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-20T20:55:19.2398470Z\",\"updatedOn\":\"2020-08-28T22:00:16.1224955Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e147488a-f6f5-4113-8e2d-b22465e65bf6\"},{\"properties\":{\"roleName\":\"Azure + that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/eventSubscriptions/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-20T20:55:19.2398470Z\",\"updatedOn\":\"2020-12-18T02:07:07.8257872Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e147488a-f6f5-4113-8e2d-b22465e65bf6\"},{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Viewer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - view all resources in cluster/namespace, except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*/read\"],\"notDataActions\":[\"Microsoft.Kubernetes/connectedClusters/secrets/read\",\"Microsoft.Kubernetes/connectedClusters/clusterconfig.azure.com/azureclusteridentityrequests/read\"]}],\"createdOn\":\"2020-06-12T20:51:12.8801199Z\",\"updatedOn\":\"2020-06-12T20:51:12.8801199Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63f0a09d-1495-4db4-a681-037d84835eb4\"},{\"properties\":{\"roleName\":\"Azure + view all resources in cluster/namespace, except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\",\"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\"Microsoft.Kubernetes/connectedClusters/endpoints/read\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\"Microsoft.Kubernetes/connectedClusters/pods/read\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\"Microsoft.Kubernetes/connectedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:51:12.8801199Z\",\"updatedOn\":\"2020-11-02T23:50:46.3225174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63f0a09d-1495-4db4-a681-037d84835eb4\"},{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Writer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role - bindings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*/read\",\"Microsoft.Kubernetes/connectedClusters/*/write\"],\"notDataActions\":[\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/read\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/write\",\"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\"Microsoft.Kubernetes/connectedClusters/certificates.k8s.io/certificatesigningrequests/write\",\"Microsoft.Kubernetes/connectedClusters/policy/podsecuritypolicies/write\"]}],\"createdOn\":\"2020-06-12T20:53:50.6749823Z\",\"updatedOn\":\"2020-06-12T20:53:50.6749823Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b999177-9696-4545-85c7-50de3797e5a1\"},{\"properties\":{\"roleName\":\"Azure + bindings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:53:50.6749823Z\",\"updatedOn\":\"2020-11-02T23:48:04.7027508Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b999177-9696-4545-85c7-50de3797e5a1\"},{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:55:30.9910462Z\",\"updatedOn\":\"2020-06-12T20:55:30.9910462Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8393591c-06b9-48a2-a542-1bd6b377f6a2\"},{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources under cluster/namespace, except update or delete resource - quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*\"],\"notDataActions\":[\"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/delete\",\"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\"Microsoft.Kubernetes/connectedClusters/namespaces/delete\"]}],\"createdOn\":\"2020-06-12T20:57:06.0391177Z\",\"updatedOn\":\"2020-06-12T20:57:06.0391177Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"},{\"properties\":{\"roleName\":\"Azure + quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:57:06.0391177Z\",\"updatedOn\":\"2020-11-02T23:52:48.6202974Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"},{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2020-07-02T17:47:24.4071415Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"},{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\"Microsoft.ContainerService/managedClusters/namespaces/write\",\"Microsoft.ContainerService/managedClusters/namespaces/delete\"]}],\"createdOn\":\"2020-07-02T17:50:30.4020311Z\",\"updatedOn\":\"2020-07-02T17:50:30.4020311Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3498e952-d568-435e-9b2c-8d77e338d7f7\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you view all resources in cluster/namespace, except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*/read\"],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\"Microsoft.ContainerService/managedClusters/secrets/*\"]}],\"createdOn\":\"2020-07-02T17:53:05.5728294Z\",\"updatedOn\":\"2020-07-07T16:40:37.2744607Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Writer\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you update everything in cluster/namespace, except resource quotas, namespaces, - pod security policies, certificate signing requests, (cluster)roles and (cluster)role - bindings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*/read\",\"Microsoft.ContainerService/managedClusters/*/write\"],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\"Microsoft.ContainerService/managedClusters/namespaces/write\",\"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\"Microsoft.ContainerService/managedClusters/certificates.k8s.io/certificatesigningrequests/write\",\"Microsoft.ContainerService/managedClusters/policy/podsecuritypolicies/write\"]}],\"createdOn\":\"2020-07-02T17:54:51.9644983Z\",\"updatedOn\":\"2020-07-02T17:54:51.9644983Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"},{\"properties\":{\"roleName\":\"Services + Kubernetes Service RBAC Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read-only access to see most objects in a namespace. It does not allow viewing + roles or role bindings. This role does not allow viewing Secrets, since reading + the contents of Secrets enables access to ServiceAccount credentials in the + namespace, which would allow API access as any ServiceAccount in the namespace + (a form of privilege escalation). Applying this role at cluster scope will + give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/apps/deployments/read\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\"Microsoft.ContainerService/managedClusters/batch/jobs/read\",\"Microsoft.ContainerService/managedClusters/configmaps/read\",\"Microsoft.ContainerService/managedClusters/endpoints/read\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/read\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\",\"Microsoft.ContainerService/managedClusters/pods/read\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/read\",\"Microsoft.ContainerService/managedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:53:05.5728294Z\",\"updatedOn\":\"2020-10-22T16:08:11.1332215Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service RBAC Writer\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read/write access to most objects in a namespace.This role does not allow + viewing or modifying roles or role bindings. However, this role allows accessing + Secrets and running Pods as any ServiceAccount in the namespace, so it can + be used to gain the API access levels of any ServiceAccount in the namespace. + Applying this role at cluster scope will give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/apps/deployments/*\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\"Microsoft.ContainerService/managedClusters/pods/*\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/secrets/*\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\"Microsoft.ContainerService/managedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:54:51.9644983Z\",\"updatedOn\":\"2020-10-22T16:10:35.0181117Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"},{\"properties\":{\"roleName\":\"Services Hub Operator\",\"type\":\"BuiltInRole\",\"description\":\"Services Hub Operator allows you to perform all read, write, and deletion operations related to - Services Hub Connectors.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServicesHub/connectors/write\",\"Microsoft.ServicesHub/connectors/read\",\"Microsoft.ServicesHub/connectors/delete\",\"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\"Microsoft.ServicesHub/workspaces/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-20T17:57:22.0644902Z\",\"updatedOn\":\"2020-07-20T19:51:17.2862100Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"82200a5b-e217-47a5-b665-6d8765ee745b\"},{\"properties\":{\"roleName\":\"Object + Services Hub Connectors.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.ServicesHub/connectors/write\",\"Microsoft.ServicesHub/connectors/read\",\"Microsoft.ServicesHub/connectors/delete\",\"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\"Microsoft.ServicesHub/workspaces/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-20T17:57:22.0644902Z\",\"updatedOn\":\"2020-10-06T17:18:28.4647301Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"82200a5b-e217-47a5-b665-6d8765ee745b\"},{\"properties\":{\"roleName\":\"Object Understanding Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read ingestion jobs for an object understanding account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-23T19:16:31.9929119Z\",\"updatedOn\":\"2020-07-23T19:16:31.9929119Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18777c0-1514-4662-8490-608db7d334b6\"},{\"properties\":{\"roleName\":\"Azure Arc Enabled Kubernetes Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List cluster user credentials action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-28T17:37:00.7637445Z\",\"updatedOn\":\"2020-07-30T18:00:32.2764334Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"},{\"properties\":{\"roleName\":\"SignalR App Server (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets your - app server access SignalR Service with AAD Auth options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/service/accessKey/action\",\"Microsoft.SignalRService/SignalR/serverConnection/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T06:54:40.1201435Z\",\"updatedOn\":\"2020-09-24T05:35:18.9502869Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"420fcaa2-552c-430f-98ca-3264be4806c7\"},{\"properties\":{\"roleName\":\"SignalR + app server access SignalR Service with AAD auth options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/serverConnection/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T06:54:40.1201435Z\",\"updatedOn\":\"2020-10-23T08:23:46.8454102Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"420fcaa2-552c-430f-98ca-3264be4806c7\"},{\"properties\":{\"roleName\":\"SignalR Serverless Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets - your app access service in serverless mode.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/service/clientToken/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2020-07-29T09:43:23.4682463Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd53cd77-2268-407a-8f46-7e7863d0f521\"},{\"properties\":{\"roleName\":\"Collaborative + your app access service in serverless mode with AAD auth options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/clientToken/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2020-10-23T08:24:24.5713531Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd53cd77-2268-407a-8f46-7e7863d0f521\"},{\"properties\":{\"roleName\":\"Collaborative Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage data packages of a collaborative.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/dataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-08-14T11:58:31.8973556Z\",\"updatedOn\":\"2020-08-14T12:36:49.5626061Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"daa9e50b-21df-454c-94a6-a8050adab352\"},{\"properties\":{\"roleName\":\"Device Update Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives you read @@ -1463,20 +1686,90 @@ interactions: Platform Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides read access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2020-09-14T10:21:08.9138820Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"},{\"properties\":{\"roleName\":\"AgFood Platform Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides - contribute access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/write\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/growers/create/action\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2020-09-14T10:21:09.7239169Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8508508a-4469-4e45-963b-2518ee0bb728\"},{\"properties\":{\"roleName\":\"AgFood + contribute access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/write\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmers/write\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2020-10-27T09:45:30.5740183Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8508508a-4469-4e45-963b-2518ee0bb728\"},{\"properties\":{\"roleName\":\"AgFood Platform Service Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides admin access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:09.8039209Z\",\"updatedOn\":\"2020-09-14T10:21:09.8039209Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"},{\"properties\":{\"roleName\":\"Managed HSM contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - managed HSM pools, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/managedHSMs/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-09-16T21:47:01.1291104Z\",\"updatedOn\":\"2020-09-16T21:47:01.1291104Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18500a29-7fe2-46b2-a342-b16a415e101d\"}]}" + managed HSM pools, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/managedHSMs/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-09-16T21:47:01.1291104Z\",\"updatedOn\":\"2020-09-16T21:47:01.1291104Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18500a29-7fe2-46b2-a342-b16a415e101d\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Submitter\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to create submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-01T08:55:21.3980274Z\",\"updatedOn\":\"2020-10-19T07:11:48.9552954Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"},{\"properties\":{\"roleName\":\"SignalR + Service Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + access to Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/user/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:19:05.6463616Z\",\"updatedOn\":\"2020-10-23T08:25:22.8928130Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddde6b66-c0df-4114-a159-3618637b3035\"},{\"properties\":{\"roleName\":\"SignalR + Service Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Full + access to Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2020-10-23T08:25:07.1104987Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"},{\"properties\":{\"roleName\":\"Reservation + Purchaser\",\"type\":\"BuiltInRole\",\"description\":\"Lets you purchase reservations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Compute/register/action\",\"Microsoft.SQL/register/action\",\"Microsoft.Consumption/register/action\",\"Microsoft.Capacity/catalogs/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Consumption/reservationRecommendations/read\",\"Microsoft.Support/supporttickets/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-23T20:22:48.9217751Z\",\"updatedOn\":\"2020-10-23T20:22:48.9217751Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f7b75c60-3036-4b75-91c3-6b41c27c1689\"},{\"properties\":{\"roleName\":\"AzureML + Metrics Writer (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you write metrics to AzureML workspace\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-27T16:55:19.5664950Z\",\"updatedOn\":\"2020-10-28T19:17:09.2941184Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"},{\"properties\":{\"roleName\":\"Storage + Account Backup Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Storage + Account Backup Contributors are allowed to perform backup and restore of Storage + Account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/delete\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/operations/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-11-02T23:32:50.4203469Z\",\"updatedOn\":\"2020-11-18T22:53:07.0632395Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"},{\"properties\":{\"roleName\":\"Metric + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for creation, + writes and reads to the metric set via the metrics service APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-10T20:07:53.7535885Z\",\"updatedOn\":\"2020-11-23T18:58:12.6058824Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6188b7c9-7d01-4f99-a59f-c88b630326c0\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Curator\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon + data curator can create, read, modify and delete catalog data objects and + establish relationships between objects. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\",\"Microsoft.ProjectBabylon/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:31:33.7988825Z\",\"updatedOn\":\"2020-11-20T21:21:21.9658575Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon + data reader can read catalog data objects. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:33:13.5342351Z\",\"updatedOn\":\"2020-11-20T21:21:51.9362426Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d896ba-346d-4f50-bc1d-7d1c84130446\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Source Administrator\",\"type\":\"BuiltInRole\",\"description\":\"The + Microsoft.ProjectBabylon data source administrator can manage data sources + and data scans. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/scan/read\",\"Microsoft.ProjectBabylon/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:34:01.8401954Z\",\"updatedOn\":\"2020-11-20T21:22:15.6138058Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05b7651b-dc44-475e-b74d-df3db49fae0f\"},{\"properties\":{\"roleName\":\"Purview + Data Curator\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.Purview + data curator can create, read, modify and delete catalog data objects and + establish relationships between objects. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\",\"Microsoft.Purview/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:37:15.0123345Z\",\"updatedOn\":\"2020-11-20T21:24:12.8131677Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a3c2885-9b38-4fd2-9d99-91af537c1347\"},{\"properties\":{\"roleName\":\"Purview + Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.Purview + data reader can read catalog data objects. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:39:22.2344740Z\",\"updatedOn\":\"2020-11-20T21:24:29.5157346Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ff100721-1b9d-43d8-af52-42b69c1272db\"},{\"properties\":{\"roleName\":\"Purview + Data Source Administrator\",\"type\":\"BuiltInRole\",\"description\":\"The + Microsoft.Purview data source administrator can manage data sources and data + scans. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/scan/read\",\"Microsoft.Purview/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:40:05.0975648Z\",\"updatedOn\":\"2020-11-20T21:24:43.5940624Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"200bba9e-f0c8-430f-892b-6f0794863803\"},{\"properties\":{\"roleName\":\"Application + Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-03T23:26:00.2784962Z\",\"updatedOn\":\"2020-12-04T23:46:35.0341772Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:36:19.0140629Z\",\"updatedOn\":\"2020-12-11T21:36:19.0140629Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49a72310-ab8d-41df-bbb0-79b649203868\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:37:16.2910337Z\",\"updatedOn\":\"2020-12-11T21:37:16.2910337Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"082f0a83-3be5-4ba1-904c-961cca79b387\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Workspace Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/*\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:38:29.6089216Z\",\"updatedOn\":\"2020-12-11T21:38:29.6089216Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization User Session Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator + of the Desktop Virtualization Uesr Session.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:16.9100273Z\",\"updatedOn\":\"2020-12-11T21:39:16.9100273Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Session Host Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator + of the Desktop Virtualization Session Host.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:53.2569741Z\",\"updatedOn\":\"2020-12-11T21:39:53.2569741Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Host Pool Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:33.1430834Z\",\"updatedOn\":\"2020-12-11T21:40:33.1430834Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ceadfde2-b300-400a-ab7b-6143895aa822\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Host Pool Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:57.2976187Z\",\"updatedOn\":\"2020-12-11T21:40:57.2976187Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e307426c-f9b6-4e81-87de-d99efb3c32bc\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Application Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:18.0287398Z\",\"updatedOn\":\"2020-12-11T21:41:18.0287398Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Application Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:38.6205531Z\",\"updatedOn\":\"2020-12-11T21:41:38.6205531Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86240b0e-9422-4c43-887b-b61143f32ba8\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Workspace Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:58.1892707Z\",\"updatedOn\":\"2020-12-11T21:41:58.1892707Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"},{\"properties\":{\"roleName\":\"Disk + Backup Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission + to backup vault to perform disk backup.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T07:39:03.8394514Z\",\"updatedOn\":\"2020-12-18T05:00:23.3015246Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + permissions to upload and manage new Autonomous Development Platform measurements.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\"],\"notDataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\"]}],\"createdOn\":\"2020-12-15T11:30:01.7459379Z\",\"updatedOn\":\"2021-01-05T15:53:39.9593947Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8b15564-4fa6-4a59-ab12-03e1d9594795\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:11:31.9843256Z\",\"updatedOn\":\"2020-12-15T12:11:31.9843256Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:13:59.9702378Z\",\"updatedOn\":\"2020-12-15T12:13:59.9702378Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"27f8b550-c507-4db9-86f2-f4b8e816d59d\"},{\"properties\":{\"roleName\":\"Disk + Restore Operator\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission + to backup vault to perform disk restore.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:31.8481619Z\",\"updatedOn\":\"2020-12-18T05:00:53.9562743Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b50d9833-a0cb-478e-945f-707fcc997c13\"},{\"properties\":{\"roleName\":\"Disk + Snapshot Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides + permission to backup vault to manage disk snapshots.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\",\"Microsoft.Compute/snapshots/endGetAccess/action\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:51.4471411Z\",\"updatedOn\":\"2021-01-06T04:00:07.5681241Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7efff54f-a5b4-42b5-a1c5-5411624893ce\"},{\"properties\":{\"roleName\":\"Microsoft.Kubernetes + connected cluster role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Kubernetes + connected cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\",\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-01-07T23:57:10.9923232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"}]}" headers: cache-control: - no-cache content-length: - - '236530' + - '272636' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:56 GMT expires: - '-1' pragma: @@ -1495,7 +1788,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["14bf1155-ba84-40d8-a0e7-f84669d447bc"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["bf75307c-0eec-441c-95d0-9ee87c40b7b6"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1514,18 +1807,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.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.ServicePrincipal","objectType":"ServicePrincipal","objectId":"14bf1155-ba84-40d8-a0e7-f84669d447bc","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d7c8e727-9122-4a96-92e1-4d3a764e4e3b","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","d7c8e727-9122-4a96-92e1-4d3a764e4e3b"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","ec4504d6-e01b-4b6b-b926-e7976363753e"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1538,19 +1831,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:55 GMT duration: - - '621198' + - '589760' expires: - '-1' ocp-aad-diagnostics-server-name: - - W2nyaq+TwzM/o5DdpL8cVakCYq3cRJBcbcojRgdK2AY= + - bjwfCHqIrtGB+z8zTamk9qnExmWtx2/qGwNbbFSoSzc= ocp-aad-session-key: - - MZ1vl5BHZZIHBCBZuYL3rc88WUhapn4OHYmNmnz7nHh2XRfvyG_e64NsLkxoiseRRPZS33URaFTHuYUOJNMj0eQlU8YQbpkh2YZAZd25cPjI0FqMoUkYhJO3rS8tssa4JQ9xn_6-PqAXww9MkQLbcVETk2xuLXQBCXiybyp7_kw.iyU7uERCs9OYV4c3KWwCFaZ7ajZFCqGe0iQTVstKfR0 + - a7xHcnIYcHnBTcWQex-7CntalMpl8W1MC7tbPUmlPDhxQGGd4vbjyGuKX1M_p4aHVQVftwnaR17vjVsFAZyLogfFXlllCSRqe-ti06rfLgil4-JZKliBMMutAVX1Y5YvYCLVfjYU14wVoD7m6fIdn5JuNvMIa0MHmQVB7EIk8LA.ICDDPmPDdkbvfyy0k0rMOWDl-0sgmZHCwLBro26l0dk pragma: - no-cache request-id: - - c96befe1-93a3-46b2-8465-2dd95d545241 + - 9c1d3f84-35dd-411d-8317-f95b9a1fcee8 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1579,43 +1872,43 @@ interactions: - --id User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest.rg000001%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.Application","objectType":"Application","objectId":"e84d9990-fa50-4101-977b-4361d93a8ad0","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"d7c8e727-9122-4a96-92e1-4d3a764e4e3b","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/e84d9990-fa50-4101-977b-4361d93a8ad0/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"761d1e6e-e3c9-4209-992c-e5bd2900d209","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-09-25T21:43:40.827765Z","keyId":"88888888-0000-0000-0000-000000000004","startDate":"2020-09-25T21:43:40.827765Z","value":null},{"customKeyIdentifier":null,"endDate":"2021-09-25T21:43:30.703511Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-09-25T21:43:30.703511Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:56.302161Z","keyId":"88888888-0000-0000-0000-000000000006","startDate":"2021-01-13T01:23:56.302161Z","value":null},{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","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: - - '2772' + - '2770' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:56 GMT duration: - - '924021' + - '550535' expires: - '-1' ocp-aad-diagnostics-server-name: - - oZrPe4FIKjo1GYhrO8IKL/xFEqlXASoSuWNSbfUwOuY= + - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= ocp-aad-session-key: - - DacYVUXagt1hArDH44QvB3-fix1Vh8u50IpjPCMJAzLb7bt6CWbFHSfZwhMzgxT0SFsAN2jaWwZAZA9J_nEXrhNMOYQ--VzMIkdx7Lf-P_C_7h04U4KvnsUmd7NAuTIM3Y1DSzI0KkSZoXFJHlU_v0PKirwvzzU4gewMuZPQ9rc.jBk-8ET3Aq39eo3dcd0_-eWuJNz198S3Ww4L53rLzMg + - yfO46sqU7cnSE9NP-QHg97JIeYgYEbETuUYUCcBG3H9HvQqmNs5muvmn6rWZrz2792MTE2NaUCCKyJOQZVQMYwDqO5e2NJkBzo2-d8DCga8dc4M1LzApxBsfjY_EYQtoImSUaqKfVdladcZyOL2PVngbntCxDWQAadbuKYiAXMs.CqEolT05pH--YStDIJ30iNC0VEJntb_XTNeIHNLj5tU pragma: - no-cache request-id: - - 75ab315f-3b04-401c-8a23-97def352c668 + - 5493e74e-80d1-4d02-a1d5-338d74eef8f2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1646,11 +1939,11 @@ interactions: - --id User-Agent: - python/3.8.2 (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.12.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/e84d9990-fa50-4101-977b-4361d93a8ad0?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209?api-version=1.6 response: body: string: '' @@ -1660,19 +1953,19 @@ interactions: cache-control: - no-cache date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:57 GMT duration: - - '1799482' + - '3384132' expires: - '-1' ocp-aad-diagnostics-server-name: - - IAJInqPI4lKNkkjmRxlvRCo0yCEDsc0J29jSC990RR4= + - EAp7u9CsSCiK4NVbGNE1YMiF2wiR1HRkkGEUJbMfUOU= ocp-aad-session-key: - - fjExVFolJFWSFgvZ8w3bEa78KnnCCTHMQf3Fn65_ABp8Lj4mxrcFEZ7tOwaJyPx_69RToNA0GvEwGH-07PE81hLlO_3Z8jPnyCPEQmTGed89Dh55gpqToyDUckCtLZ-nwX50DOLfKMQueWu3znlJmrnuwIUd-vnzxdhfiyFiXxQ.ED5nIxoy5ZlE9ECjKUYhPbO1hA2Bnj4GEXnv2ar_AxU + - _EY-_FBXotIHGyChQsxuA9Jr-lqCK1gM6-Vt5JtuqJI573AbyKI7zeP1wD5gis3AiH8VtOdHlQFCOp4-cxRdJOHPlL5gWa0XcHKlQHkxhzotPWKdOGa9LPfThUnMw_dVFGDEkKBW42Cxc4_yCyh1fNL4Eb4ItglJ4cLouatsyE4.NS2Tn6T6Pv1_hqkocXCW-j9ovVtAY5vNdRJGKzozW-g pragma: - no-cache request-id: - - efbeb0f5-fa25-4dad-ac75-6585c21c5aa0 + - 1f93dd6c-1777-4e06-865b-8de8ee5e37fe strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml index 14aba90eb60..ffb627d6ee3 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '303' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc54da33-17d9-4daf-b49a-5502eb36b1d2\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:39 GMT + - Wed, 13 Jan 2021 01:19:30 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc54da33-17d9-4daf-b49a-5502eb36b1d2\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:40 GMT + - Wed, 13 Jan 2021 01:19:31 GMT expires: - '-1' odata-version: @@ -113,7 +117,7 @@ interactions: - request: body: '{"location": "East Asia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "type": "Secondary"}]}}' + "type": "Secondary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -124,34 +128,36 @@ interactions: Connection: - keep-alive Content-Length: - - '548' + - '578' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc54da33-17d9-4daf-b49a-5502eb36b1d2\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '923' + - '1041' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:41 GMT + - Wed, 13 Jan 2021 01:19:33 GMT expires: - '-1' odata-version: @@ -165,7 +171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -184,27 +190,29 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc54da33-17d9-4daf-b49a-5502eb36b1d2\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n - \ }\r\n ]\r\n }\r\n}" + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '923' + - '1041' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:42 GMT + - Wed, 13 Jan 2021 01:19:34 GMT expires: - '-1' odata-version: @@ -226,7 +234,7 @@ interactions: message: OK - request: body: '{"location": "East Asia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -237,33 +245,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc54da33-17d9-4daf-b49a-5502eb36b1d2\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:43 GMT + - Wed, 13 Jan 2021 01:19:36 GMT expires: - '-1' odata-version: @@ -277,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml index 6ca31b7e5cb..6d2c5cbd598 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"f5815cdd-9acc-4cfa-8536-fa3eebccf771\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"0fd249ce-2783-41c2-93ef-ab5562f61c98\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:35 GMT + - Wed, 13 Jan 2021 01:23:27 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -73,26 +75,28 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"f5815cdd-9acc-4cfa-8536-fa3eebccf771\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"0fd249ce-2783-41c2-93ef-ab5562f61c98\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:36 GMT + - Wed, 13 Jan 2021 01:23:28 GMT expires: - '-1' odata-version: @@ -141,11 +145,11 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada @@ -159,11 +163,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:37.1295301Z\",\"lastModified\":\"2020-09-25T21:43:37.1295301Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:29.5399857Z\",\"lastModified\":\"2021-01-13T01:23:29.5399857Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -171,11 +175,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:36 GMT + - Wed, 13 Jan 2021 01:23:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -187,64 +191,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"75de136a-97f0-45b7-bdbf-b529007df62f\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"20cec225-a2e5-4af6-a381-ec7ce1941c9f\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:43:39 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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 + code: 201 + message: Created - request: body: null headers: @@ -261,17 +211,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"75de136a-97f0-45b7-bdbf-b529007df62f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"20cec225-a2e5-4af6-a381-ec7ce1941c9f\"\r\n + string: "{\r\n \"name\":\"28afce95-b4dd-46d5-8fea-dc8c01df88dd\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"8cbdbf27-7095-4146-8894-e356fbe52d06\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/75de136a-97f0-45b7-bdbf-b529007df62f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -279,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:31 GMT expires: - '-1' odata-version: @@ -315,9 +265,9 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada @@ -330,7 +280,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:37.1610318Z\",\"lastModified\":\"2020-09-25T21:43:37.1610318Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:29.5711541Z\",\"lastModified\":\"2021-01-13T01:23:31.4567547Z\"\r\n \ }\r\n}" headers: cache-control: @@ -340,7 +290,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:32 GMT expires: - '-1' odata-version: @@ -377,27 +327,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/3ca397de-9abe-4cfc-abf7-c29b9eb2615e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:44 GMT + - Wed, 13 Jan 2021 01:23:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/3ca397de-9abe-4cfc-abf7-c29b9eb2615e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 pragma: - no-cache server: @@ -407,7 +357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -426,17 +376,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/3ca397de-9abe-4cfc-abf7-c29b9eb2615e?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"3ca397de-9abe-4cfc-abf7-c29b9eb2615e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"20cec225-a2e5-4af6-a381-ec7ce1941c9f\"\r\n + string: "{\r\n \"name\":\"2cc138f5-c120-4e1a-8201-4356709d89c7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/3ca397de-9abe-4cfc-abf7-c29b9eb2615e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -444,7 +394,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:46 GMT + - Wed, 13 Jan 2021 01:23:35 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml index 29e158ad251..235fabd69aa 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "northeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"c1a36604-957f-4921-802b-a7b5158e5c5e\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"934787f0-0287-4044-9093-e82cbf0b40fa\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:42 GMT + - Wed, 13 Jan 2021 01:23:44 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"c1a36604-957f-4921-802b-a7b5158e5c5e\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"934787f0-0287-4044-9093-e82cbf0b40fa\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:43 GMT + - Wed, 13 Jan 2021 01:23:45 GMT expires: - '-1' odata-version: @@ -141,11 +145,11 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -162,23 +166,23 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:45.426032Z\",\"lastModified\":\"2020-09-25T21:43:45.426032Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4679767Z\",\"lastModified\":\"2021-01-13T01:23:47.4679767Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/66377bf2-29a8-4fc8-8174-601df5f50335?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1899' + - '1901' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:44 GMT + - Wed, 13 Jan 2021 01:23:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/66377bf2-29a8-4fc8-8174-601df5f50335?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -190,10 +194,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -210,17 +214,17 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/66377bf2-29a8-4fc8-8174-601df5f50335?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"66377bf2-29a8-4fc8-8174-601df5f50335\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"11f32634-4cce-4779-8544-4dd886fcbc3c\"\r\n + string: "{\r\n \"name\":\"f2b0ead6-4fe0-464a-9f48-c23367bf4825\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"fc870d05-2e98-4144-8d3c-6d7eb6f6bed6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/66377bf2-29a8-4fc8-8174-601df5f50335?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -228,7 +232,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:47 GMT + - Wed, 13 Jan 2021 01:23:50 GMT expires: - '-1' odata-version: @@ -264,9 +268,9 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -283,17 +287,17 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:45.4572805Z\",\"lastModified\":\"2020-09-25T21:43:47.5958061Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:49.831052Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1899' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:48 GMT + - Wed, 13 Jan 2021 01:23:50 GMT expires: - '-1' odata-version: @@ -328,11 +332,11 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -349,17 +353,17 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:45.4572805Z\",\"lastModified\":\"2020-09-25T21:43:47.5958061Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:49.831052Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1900' + - '1899' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:49 GMT + - Wed, 13 Jan 2021 01:23:53 GMT expires: - '-1' odata-version: @@ -410,11 +414,11 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -443,7 +447,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:50 GMT + - Wed, 13 Jan 2021 01:23:53 GMT expires: - '-1' odata-version: @@ -461,7 +465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' status: code: 200 message: OK @@ -480,11 +484,11 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -503,7 +507,7 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:45.4572805Z\",\"lastModified\":\"2020-09-25T21:43:51.1994508Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:53.4619604Z\"\r\n \ }\r\n}" headers: cache-control: @@ -513,7 +517,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:51 GMT + - Wed, 13 Jan 2021 01:23:54 GMT expires: - '-1' odata-version: @@ -563,11 +567,11 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"North @@ -595,7 +599,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:52 GMT + - Wed, 13 Jan 2021 01:23:55 GMT expires: - '-1' odata-version: @@ -613,7 +617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -634,27 +638,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/08060b32-91cb-4ab5-9ebb-64d811dbdba2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:53 GMT + - Wed, 13 Jan 2021 01:23:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/08060b32-91cb-4ab5-9ebb-64d811dbdba2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 pragma: - no-cache server: @@ -664,7 +668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' status: code: 202 message: Accepted @@ -683,17 +687,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/08060b32-91cb-4ab5-9ebb-64d811dbdba2?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"08060b32-91cb-4ab5-9ebb-64d811dbdba2\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"e47210e3-1fc6-4b4f-9353-6fd0137f7a14\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/08060b32-91cb-4ab5-9ebb-64d811dbdba2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -701,7 +705,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:57 GMT + - Wed, 13 Jan 2021 01:23:58 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml index 32e2fee6460..cc15ae80bbc 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"b3288520-35b8-47b3-be16-f38c1f119ead\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"320c8355-e643-40b4-9593-252ed3b0aaf2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:53 GMT + - Wed, 13 Jan 2021 01:23:41 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"b3288520-35b8-47b3-be16-f38c1f119ead\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"320c8355-e643-40b4-9593-252ed3b0aaf2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:54 GMT + - Wed, 13 Jan 2021 01:23:41 GMT expires: - '-1' odata-version: @@ -131,22 +135,22 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:55.9126852Z\",\"lastModified\":\"2020-09-25T21:43:55.9126852Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.4747993Z\",\"lastModified\":\"2021-01-13T01:23:43.4747993Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e42ef9e5-97cc-4ada-b8b7-b42dee5e0837?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -154,11 +158,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:56 GMT + - Wed, 13 Jan 2021 01:23:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/e42ef9e5-97cc-4ada-b8b7-b42dee5e0837?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -170,10 +174,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -189,17 +193,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e42ef9e5-97cc-4ada-b8b7-b42dee5e0837?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e42ef9e5-97cc-4ada-b8b7-b42dee5e0837\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"76e026ac-a375-4497-9f03-53de4ac917f1\"\r\n + string: "{\r\n \"name\":\"c9711770-e613-4bd7-90cd-08ecd81044fc\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f8f1f699-2c0c-416c-8233-3b5b96fbdf71\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e42ef9e5-97cc-4ada-b8b7-b42dee5e0837?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -207,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:58 GMT + - Wed, 13 Jan 2021 01:23:46 GMT expires: - '-1' odata-version: @@ -242,14 +246,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:55.9596197Z\",\"lastModified\":\"2020-09-25T21:43:55.9596197Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:45.4457919Z\"\r\n \ }\r\n}" headers: cache-control: @@ -259,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:58 GMT + - Wed, 13 Jan 2021 01:23:46 GMT expires: - '-1' odata-version: @@ -294,16 +298,16 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:55.9596197Z\",\"lastModified\":\"2020-09-25T21:43:55.9596197Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:45.4457919Z\"\r\n \ }\r\n}" headers: cache-control: @@ -313,7 +317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:59 GMT + - Wed, 13 Jan 2021 01:23:47 GMT expires: - '-1' odata-version: @@ -355,11 +359,11 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada @@ -376,7 +380,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:00 GMT + - Wed, 13 Jan 2021 01:23:48 GMT expires: - '-1' odata-version: @@ -394,7 +398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -413,18 +417,18 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":{\r\n \"akamaiSignatureHeaderAuthenticationKeyList\":[\r\n \ {\r\n \"identifier\":\"id1\",\"expiration\":\"2031-01-01T00:00:00Z\",\"base64Key\":\"dGVzdGlkMQ==\"\r\n - \ }\r\n ]\r\n },\"ip\":null\r\n },\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:43:55.9596197Z\",\"lastModified\":\"2020-09-25T21:44:00.4521131Z\"\r\n + \ }\r\n ]\r\n },\"ip\":null\r\n },\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:48.0912157Z\"\r\n \ }\r\n}" headers: cache-control: @@ -434,7 +438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:00 GMT + - Wed, 13 Jan 2021 01:23:48 GMT expires: - '-1' odata-version: @@ -475,11 +479,11 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada @@ -495,7 +499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:01 GMT + - Wed, 13 Jan 2021 01:23:49 GMT expires: - '-1' odata-version: @@ -513,7 +517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 200 message: OK @@ -534,27 +538,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7e8bc4cd-ee06-4d60-9bd5-bd457ef563d8?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:02 GMT + - Wed, 13 Jan 2021 01:23:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/7e8bc4cd-ee06-4d60-9bd5-bd457ef563d8?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 pragma: - no-cache server: @@ -564,7 +568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -583,17 +587,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7e8bc4cd-ee06-4d60-9bd5-bd457ef563d8?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"7e8bc4cd-ee06-4d60-9bd5-bd457ef563d8\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"76e026ac-a375-4497-9f03-53de4ac917f1\"\r\n + string: "{\r\n \"name\":\"4269a02d-d986-45a1-b3b5-4f1681b6fb67\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7e8bc4cd-ee06-4d60-9bd5-bd457ef563d8?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -601,7 +605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:04 GMT + - Wed, 13 Jan 2021 01:23:52 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml index 12e0f9d698a..d06236fcf69 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"7b65fe55-f25c-4631-8190-4213c102afd6\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"e1616c8a-7b1d-4bff-be1c-488a61261923\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:59 GMT + - Wed, 13 Jan 2021 01:23:39 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"7b65fe55-f25c-4631-8190-4213c102afd6\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"e1616c8a-7b1d-4bff-be1c-488a61261923\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:00 GMT + - Wed, 13 Jan 2021 01:23:41 GMT expires: - '-1' odata-version: @@ -140,11 +144,11 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South @@ -158,11 +162,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:03.4108638Z\",\"lastModified\":\"2020-09-25T21:44:03.4108638Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.5768345Z\",\"lastModified\":\"2021-01-13T01:23:44.5768345Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -170,11 +174,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:03 GMT + - Wed, 13 Jan 2021 01:23:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -186,64 +190,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"1c6b4883-512a-4a62-8efa-4ec0f8895aa2\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"717a3269-06fa-4ad6-8f47-965a5bf3bf9d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:06 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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 + - '1195' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -260,17 +210,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c6b4883-512a-4a62-8efa-4ec0f8895aa2\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"717a3269-06fa-4ad6-8f47-965a5bf3bf9d\"\r\n + string: "{\r\n \"name\":\"fc3a3abe-795c-41de-b511-fb4227288072\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"32467ce3-4fe1-4be3-bf55-918e6752421c\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c6b4883-512a-4a62-8efa-4ec0f8895aa2?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -278,7 +228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:08 GMT + - Wed, 13 Jan 2021 01:23:48 GMT expires: - '-1' odata-version: @@ -314,9 +264,9 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South @@ -329,7 +279,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:03.4108638Z\",\"lastModified\":\"2020-09-25T21:44:07.1927202Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.6080924Z\",\"lastModified\":\"2021-01-13T01:23:47.9229724Z\"\r\n \ }\r\n}" headers: cache-control: @@ -339,7 +289,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:09 GMT + - Wed, 13 Jan 2021 01:23:48 GMT expires: - '-1' odata-version: @@ -374,11 +324,11 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South @@ -392,10 +342,10 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:03.4108638Z\",\"lastModified\":\"2020-09-25T21:44:07.1927202Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.6080924Z\",\"lastModified\":\"2021-01-13T01:23:47.9229724Z\"\r\n \ }\r\n },{\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:03.2626268Z\",\"lastModified\":\"2020-09-25T21:44:06.7522306Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:39.3376271Z\",\"lastModified\":\"2021-01-13T01:23:43.0975212Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -405,7 +355,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:10 GMT + - Wed, 13 Jan 2021 01:23:50 GMT expires: - '-1' odata-version: @@ -442,27 +392,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Wed, 13 Jan 2021 01:23:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 pragma: - no-cache server: @@ -472,7 +422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' status: code: 202 message: Accepted @@ -491,17 +441,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4c1c74d5-7778-4db7-a5a0-36e6fa576155\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"717a3269-06fa-4ad6-8f47-965a5bf3bf9d\"\r\n + string: "{\r\n \"name\":\"6e431e70-1641-46d1-8919-3804a3daaf7e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"32467ce3-4fe1-4be3-bf55-918e6752421c\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -509,7 +459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:15 GMT + - Wed, 13 Jan 2021 01:23:54 GMT expires: - '-1' odata-version: @@ -544,17 +494,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4c1c74d5-7778-4db7-a5a0-36e6fa576155\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"6e431e70-1641-46d1-8919-3804a3daaf7e\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4c1c74d5-7778-4db7-a5a0-36e6fa576155?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -562,7 +512,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:18 GMT + - Wed, 13 Jan 2021 01:23:57 GMT expires: - '-1' odata-version: @@ -597,16 +547,16 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:03.2626268Z\",\"lastModified\":\"2020-09-25T21:44:06.7522306Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:39.3376271Z\",\"lastModified\":\"2021-01-13T01:23:43.0975212Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -616,7 +566,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:20 GMT + - Wed, 13 Jan 2021 01:23:59 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml index 1109dbfe08d..9bdb73d7201 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"ccb330be-b84d-4862-8dfd-239d94e14496\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"96608620-dc6f-4aea-a892-421812dfc878\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:09 GMT + - Wed, 13 Jan 2021 01:23:46 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"ccb330be-b84d-4862-8dfd-239d94e14496\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"96608620-dc6f-4aea-a892-421812dfc878\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:08 GMT + - Wed, 13 Jan 2021 01:23:46 GMT expires: - '-1' odata-version: @@ -130,22 +134,22 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.4398779Z\",\"lastModified\":\"2020-09-25T21:44:10.4398779Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8385084Z\",\"lastModified\":\"2021-01-13T01:23:48.8385084Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a5d703d5-4b16-42fc-bba3-b60e8e9647af?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -153,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:10 GMT + - Wed, 13 Jan 2021 01:23:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a5d703d5-4b16-42fc-bba3-b60e8e9647af?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -169,10 +173,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -188,17 +192,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a5d703d5-4b16-42fc-bba3-b60e8e9647af?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a5d703d5-4b16-42fc-bba3-b60e8e9647af\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"83984786-0bdf-490f-93c3-20ef74909d11\"\r\n + string: "{\r\n \"name\":\"20d0e6e3-f8ea-4ed8-b53a-2c56739027fb\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"a8c66788-8808-40cd-a21d-5093e72d578a\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a5d703d5-4b16-42fc-bba3-b60e8e9647af?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,11 +210,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:12 GMT + - Wed, 13 Jan 2021 01:23:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a5d703d5-4b16-42fc-bba3-b60e8e9647af?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -243,14 +245,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.4398779Z\",\"lastModified\":\"2020-09-25T21:44:11.2427212Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8697478Z\",\"lastModified\":\"2021-01-13T01:23:50.8566748Z\"\r\n \ }\r\n}" headers: cache-control: @@ -260,7 +262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Wed, 13 Jan 2021 01:23:51 GMT expires: - '-1' odata-version: @@ -295,19 +297,19 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.4398779Z\",\"lastModified\":\"2020-09-25T21:44:11.2427212Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8697478Z\",\"lastModified\":\"2021-01-13T01:23:50.8566748Z\"\r\n \ }\r\n },{\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:09.5740484Z\",\"lastModified\":\"2020-09-25T21:44:10.2739829Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.5061932Z\",\"lastModified\":\"2021-01-13T01:23:49.4950492Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -317,7 +319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Wed, 13 Jan 2021 01:23:52 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml index 7c3dbb56b3e..2f8944ae2b0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"8be4d2de-c5d3-4b38-a2d3-6077443de2e4\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"1b792ab6-0c52-4d8e-b2e1-9c3291a5f5e4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:05 GMT + - Wed, 13 Jan 2021 01:24:03 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"8be4d2de-c5d3-4b38-a2d3-6077443de2e4\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"1b792ab6-0c52-4d8e-b2e1-9c3291a5f5e4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:07 GMT + - Wed, 13 Jan 2021 01:24:04 GMT expires: - '-1' odata-version: @@ -140,11 +144,11 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West @@ -158,11 +162,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.1588812Z\",\"lastModified\":\"2020-09-25T21:44:10.1588812Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8641172Z\",\"lastModified\":\"2021-01-13T01:24:07.8641172Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0f2fcc8d-9ed7-4235-8970-a6afec1cfc21?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -170,11 +174,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:10 GMT + - Wed, 13 Jan 2021 01:24:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/0f2fcc8d-9ed7-4235-8970-a6afec1cfc21?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -186,10 +190,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -206,17 +210,71 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0f2fcc8d-9ed7-4235-8970-a6afec1cfc21?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"0f2fcc8d-9ed7-4235-8970-a6afec1cfc21\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"35453bcf-f745-4db0-b544-c2fec92d6d38\"\r\n + string: "{\r\n \"name\":\"d93c964d-687e-4b49-bd03-d975237068b0\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0f2fcc8d-9ed7-4235-8970-a6afec1cfc21?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:24:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"d93c964d-687e-4b49-bd03-d975237068b0\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -224,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Wed, 13 Jan 2021 01:24:13 GMT expires: - '-1' odata-version: @@ -260,9 +318,9 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West @@ -275,7 +333,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.1745088Z\",\"lastModified\":\"2020-09-25T21:44:13.7496249Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8953475Z\",\"lastModified\":\"2021-01-13T01:24:11.3913646Z\"\r\n \ }\r\n}" headers: cache-control: @@ -285,7 +343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Wed, 13 Jan 2021 01:24:13 GMT expires: - '-1' odata-version: @@ -324,11 +382,11 @@ interactions: - -g -a -n --scale-unit User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/scale?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/scale?api-version=2020-05-01 response: body: string: '' @@ -338,7 +396,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:16 GMT + - Wed, 13 Jan 2021 01:24:15 GMT expires: - '-1' pragma: @@ -369,11 +427,11 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West @@ -386,7 +444,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:10.1745088Z\",\"lastModified\":\"2020-09-25T21:44:16.4858564Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8953475Z\",\"lastModified\":\"2021-01-13T01:24:16.5655552Z\"\r\n \ }\r\n}" headers: cache-control: @@ -396,7 +454,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:17 GMT + - Wed, 13 Jan 2021 01:24:17 GMT expires: - '-1' odata-version: @@ -433,27 +491,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:19 GMT + - Wed, 13 Jan 2021 01:24:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 pragma: - no-cache server: @@ -463,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted @@ -482,17 +540,70 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:24:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"35453bcf-f745-4db0-b544-c2fec92d6d38\"\r\n + string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -500,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:23 GMT + - Wed, 13 Jan 2021 01:24:25 GMT expires: - '-1' odata-version: @@ -535,17 +646,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6b8bf68e-aac0-4ba9-8979-ef5f86b8f03a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -553,7 +664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:25 GMT + - Wed, 13 Jan 2021 01:24:27 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml index 7bc4b9c2c3b..051c0c28426 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiasoutheast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '313' + - '343' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"5af842e9-8d70-47c7-8298-a34ca049f4b2\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"f5f376b7-36a4-419b-9c3d-9e4acb5b8525\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '675' + - '793' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:10 GMT + - Wed, 13 Jan 2021 01:24:25 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 201 message: Created @@ -73,26 +75,28 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"5af842e9-8d70-47c7-8298-a34ca049f4b2\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"f5f376b7-36a4-419b-9c3d-9e4acb5b8525\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '675' + - '793' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:12 GMT + - Wed, 13 Jan 2021 01:24:26 GMT expires: - '-1' odata-version: @@ -142,11 +146,11 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -160,11 +164,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:14.3290191Z\",\"lastModified\":\"2020-09-25T21:44:14.3290191Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.4861473Z\",\"lastModified\":\"2021-01-13T01:24:28.4861473Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -172,11 +176,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:14 GMT + - Wed, 13 Jan 2021 01:24:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -188,64 +192,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"4f434341-56de-48fe-8986-a8d4aafda0ec\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"dfde9d67-c4cb-452a-8bb9-d31383f81e97\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:17 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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 + - '1197' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -262,17 +212,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4f434341-56de-48fe-8986-a8d4aafda0ec\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"dfde9d67-c4cb-452a-8bb9-d31383f81e97\"\r\n + string: "{\r\n \"name\":\"164348c1-1da4-4877-b322-c7daf2078ca7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8098ecc-a34d-4cb3-ba74-83f5a2cf1e0f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4f434341-56de-48fe-8986-a8d4aafda0ec?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -280,7 +230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:19 GMT + - Wed, 13 Jan 2021 01:24:32 GMT expires: - '-1' odata-version: @@ -316,9 +266,9 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -331,7 +281,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:14.3622908Z\",\"lastModified\":\"2020-09-25T21:44:18.2986033Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.5017588Z\",\"lastModified\":\"2021-01-13T01:24:32.0567693Z\"\r\n \ }\r\n}" headers: cache-control: @@ -341,7 +291,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:19 GMT + - Wed, 13 Jan 2021 01:24:32 GMT expires: - '-1' odata-version: @@ -376,11 +326,11 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -393,7 +343,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:14.3622908Z\",\"lastModified\":\"2020-09-25T21:44:18.2986033Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.5017588Z\",\"lastModified\":\"2021-01-13T01:24:32.0567693Z\"\r\n \ }\r\n}" headers: cache-control: @@ -403,7 +353,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:21 GMT + - Wed, 13 Jan 2021 01:24:33 GMT expires: - '-1' odata-version: @@ -438,11 +388,11 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/se000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/se000005?api-version=2020-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Media/mediaservices/ams000003/streamingEndpoints/se000005'' @@ -456,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:44:21 GMT + - Wed, 13 Jan 2021 01:24:33 GMT expires: - '-1' pragma: @@ -487,27 +437,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:23 GMT + - Wed, 13 Jan 2021 01:24:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 pragma: - no-cache server: @@ -517,7 +467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -536,17 +486,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"debf45ed-8f7f-4531-863c-31d55c322656\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"dfde9d67-c4cb-452a-8bb9-d31383f81e97\"\r\n + string: "{\r\n \"name\":\"abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8098ecc-a34d-4cb3-ba74-83f5a2cf1e0f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -554,7 +504,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:26 GMT + - Wed, 13 Jan 2021 01:24:38 GMT expires: - '-1' odata-version: @@ -589,17 +539,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"debf45ed-8f7f-4531-863c-31d55c322656\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/debf45ed-8f7f-4531-863c-31d55c322656?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -607,7 +557,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:28 GMT + - Wed, 13 Jan 2021 01:24:41 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml index 009e30826e5..29ec1503f03 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "centralindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '307' + - '337' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"10bf3ece-cf55-43d0-b1b9-f7d72c286d02\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"79ea6138-3a31-4ccc-8baf-9810cce03244\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '669' + - '787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:22 GMT + - Wed, 13 Jan 2021 01:24:24 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"10bf3ece-cf55-43d0-b1b9-f7d72c286d02\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"79ea6138-3a31-4ccc-8baf-9810cce03244\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '669' + - '787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:23 GMT + - Wed, 13 Jan 2021 01:24:26 GMT expires: - '-1' odata-version: @@ -131,22 +135,22 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:25.7871008Z\",\"lastModified\":\"2020-09-25T21:44:25.7871008Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:29.0516333Z\",\"lastModified\":\"2021-01-13T01:24:29.0516333Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/ab3a88e2-3b6f-4403-a6c6-ca5489ec5bf3?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -154,11 +158,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:25 GMT + - Wed, 13 Jan 2021 01:24:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/ab3a88e2-3b6f-4403-a6c6-ca5489ec5bf3?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -170,10 +174,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -189,17 +193,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/ab3a88e2-3b6f-4403-a6c6-ca5489ec5bf3?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ab3a88e2-3b6f-4403-a6c6-ca5489ec5bf3\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"7cfee4d2-9767-43ed-8c0c-0826451f1ff6\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/ab3a88e2-3b6f-4403-a6c6-ca5489ec5bf3?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -207,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:28 GMT + - Wed, 13 Jan 2021 01:24:33 GMT expires: - '-1' odata-version: @@ -242,14 +246,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:25.8183925Z\",\"lastModified\":\"2020-09-25T21:44:25.8183925Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:29.0672811Z\",\"lastModified\":\"2021-01-13T01:24:32.5889472Z\"\r\n \ }\r\n}" headers: cache-control: @@ -259,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:29 GMT + - Wed, 13 Jan 2021 01:24:33 GMT expires: - '-1' odata-version: @@ -296,27 +300,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/start?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/start?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:32 GMT + - Wed, 13 Jan 2021 01:24:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 pragma: - no-cache server: @@ -326,7 +330,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -345,176 +349,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:36 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:38 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:41 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -522,7 +367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:43 GMT + - Wed, 13 Jan 2021 01:24:39 GMT expires: - '-1' odata-version: @@ -557,17 +402,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -575,7 +420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:45 GMT + - Wed, 13 Jan 2021 01:24:41 GMT expires: - '-1' odata-version: @@ -610,17 +455,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -628,7 +473,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:47 GMT + - Wed, 13 Jan 2021 01:24:43 GMT expires: - '-1' odata-version: @@ -663,17 +508,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -681,7 +526,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:50 GMT + - Wed, 13 Jan 2021 01:24:46 GMT expires: - '-1' odata-version: @@ -716,17 +561,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -734,7 +579,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:52 GMT + - Wed, 13 Jan 2021 01:24:48 GMT expires: - '-1' odata-version: @@ -769,17 +614,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -787,7 +632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:54 GMT + - Wed, 13 Jan 2021 01:24:50 GMT expires: - '-1' odata-version: @@ -822,17 +667,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -840,7 +685,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Wed, 13 Jan 2021 01:24:52 GMT expires: - '-1' odata-version: @@ -875,17 +720,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -893,7 +738,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:59 GMT + - Wed, 13 Jan 2021 01:24:55 GMT expires: - '-1' odata-version: @@ -928,17 +773,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -946,7 +791,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:01 GMT + - Wed, 13 Jan 2021 01:24:57 GMT expires: - '-1' odata-version: @@ -981,17 +826,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -999,7 +844,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:03 GMT + - Wed, 13 Jan 2021 01:24:59 GMT expires: - '-1' odata-version: @@ -1034,17 +879,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1052,7 +897,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:06 GMT + - Wed, 13 Jan 2021 01:25:02 GMT expires: - '-1' odata-version: @@ -1087,17 +932,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1105,7 +950,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:08 GMT + - Wed, 13 Jan 2021 01:25:04 GMT expires: - '-1' odata-version: @@ -1140,17 +985,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1158,7 +1003,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:10 GMT + - Wed, 13 Jan 2021 01:25:06 GMT expires: - '-1' odata-version: @@ -1193,17 +1038,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1211,7 +1056,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:12 GMT + - Wed, 13 Jan 2021 01:25:08 GMT expires: - '-1' odata-version: @@ -1246,17 +1091,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1264,7 +1109,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:15 GMT + - Wed, 13 Jan 2021 01:25:11 GMT expires: - '-1' odata-version: @@ -1299,17 +1144,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1317,7 +1162,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:17 GMT + - Wed, 13 Jan 2021 01:25:13 GMT expires: - '-1' odata-version: @@ -1352,17 +1197,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1370,7 +1215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:19 GMT + - Wed, 13 Jan 2021 01:25:15 GMT expires: - '-1' odata-version: @@ -1405,17 +1250,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1423,7 +1268,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:22 GMT + - Wed, 13 Jan 2021 01:25:17 GMT expires: - '-1' odata-version: @@ -1458,17 +1303,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1476,7 +1321,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:24 GMT + - Wed, 13 Jan 2021 01:25:20 GMT expires: - '-1' odata-version: @@ -1511,17 +1356,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1529,7 +1374,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:26 GMT + - Wed, 13 Jan 2021 01:25:22 GMT expires: - '-1' odata-version: @@ -1564,17 +1409,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1582,7 +1427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:28 GMT + - Wed, 13 Jan 2021 01:25:24 GMT expires: - '-1' odata-version: @@ -1617,17 +1462,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1635,7 +1480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:31 GMT + - Wed, 13 Jan 2021 01:25:27 GMT expires: - '-1' odata-version: @@ -1670,17 +1515,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1688,7 +1533,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:33 GMT + - Wed, 13 Jan 2021 01:25:29 GMT expires: - '-1' odata-version: @@ -1723,17 +1568,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1741,7 +1586,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:35 GMT + - Wed, 13 Jan 2021 01:25:31 GMT expires: - '-1' odata-version: @@ -1776,17 +1621,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1794,7 +1639,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:38 GMT + - Wed, 13 Jan 2021 01:25:33 GMT expires: - '-1' odata-version: @@ -1829,17 +1674,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1847,7 +1692,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:40 GMT + - Wed, 13 Jan 2021 01:25:36 GMT expires: - '-1' odata-version: @@ -1882,17 +1727,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1900,7 +1745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:42 GMT + - Wed, 13 Jan 2021 01:25:38 GMT expires: - '-1' odata-version: @@ -1935,17 +1780,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1953,7 +1798,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:45 GMT + - Wed, 13 Jan 2021 01:25:40 GMT expires: - '-1' odata-version: @@ -1988,17 +1833,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2006,7 +1851,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:47 GMT + - Wed, 13 Jan 2021 01:25:43 GMT expires: - '-1' odata-version: @@ -2041,17 +1886,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2059,7 +1904,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:49 GMT + - Wed, 13 Jan 2021 01:25:45 GMT expires: - '-1' odata-version: @@ -2094,17 +1939,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2112,7 +1957,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:51 GMT + - Wed, 13 Jan 2021 01:25:47 GMT expires: - '-1' odata-version: @@ -2147,17 +1992,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2165,7 +2010,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:54 GMT + - Wed, 13 Jan 2021 01:25:49 GMT expires: - '-1' odata-version: @@ -2200,17 +2045,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2218,7 +2063,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:56 GMT + - Wed, 13 Jan 2021 01:25:52 GMT expires: - '-1' odata-version: @@ -2253,17 +2098,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2271,7 +2116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:58 GMT + - Wed, 13 Jan 2021 01:25:54 GMT expires: - '-1' odata-version: @@ -2306,17 +2151,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2324,7 +2169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:01 GMT + - Wed, 13 Jan 2021 01:25:56 GMT expires: - '-1' odata-version: @@ -2359,17 +2204,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2377,7 +2222,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Wed, 13 Jan 2021 01:25:59 GMT expires: - '-1' odata-version: @@ -2412,17 +2257,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2430,7 +2275,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:05 GMT + - Wed, 13 Jan 2021 01:26:01 GMT expires: - '-1' odata-version: @@ -2465,17 +2310,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2483,7 +2328,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:07 GMT + - Wed, 13 Jan 2021 01:26:03 GMT expires: - '-1' odata-version: @@ -2518,17 +2363,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2536,7 +2381,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:10 GMT + - Wed, 13 Jan 2021 01:26:05 GMT expires: - '-1' odata-version: @@ -2571,17 +2416,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2589,7 +2434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:12 GMT + - Wed, 13 Jan 2021 01:26:08 GMT expires: - '-1' odata-version: @@ -2624,17 +2469,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2642,7 +2487,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:14 GMT + - Wed, 13 Jan 2021 01:26:10 GMT expires: - '-1' odata-version: @@ -2677,17 +2522,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2695,7 +2540,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:17 GMT + - Wed, 13 Jan 2021 01:26:12 GMT expires: - '-1' odata-version: @@ -2730,17 +2575,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2748,7 +2593,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:19 GMT + - Wed, 13 Jan 2021 01:26:15 GMT expires: - '-1' odata-version: @@ -2783,17 +2628,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2801,7 +2646,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:21 GMT + - Wed, 13 Jan 2021 01:26:18 GMT expires: - '-1' odata-version: @@ -2836,17 +2681,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2854,7 +2699,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:23 GMT + - Wed, 13 Jan 2021 01:26:20 GMT expires: - '-1' odata-version: @@ -2889,17 +2734,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2907,7 +2752,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:26 GMT + - Wed, 13 Jan 2021 01:26:22 GMT expires: - '-1' odata-version: @@ -2942,17 +2787,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2960,7 +2805,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Wed, 13 Jan 2021 01:26:25 GMT expires: - '-1' odata-version: @@ -2995,17 +2840,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3013,7 +2858,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:30 GMT + - Wed, 13 Jan 2021 01:26:27 GMT expires: - '-1' odata-version: @@ -3048,17 +2893,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3066,7 +2911,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:33 GMT + - Wed, 13 Jan 2021 01:26:29 GMT expires: - '-1' odata-version: @@ -3101,17 +2946,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3119,7 +2964,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:35 GMT + - Wed, 13 Jan 2021 01:26:31 GMT expires: - '-1' odata-version: @@ -3154,17 +2999,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3172,7 +3017,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:37 GMT + - Wed, 13 Jan 2021 01:26:34 GMT expires: - '-1' odata-version: @@ -3207,17 +3052,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3225,7 +3070,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:39 GMT + - Wed, 13 Jan 2021 01:26:36 GMT expires: - '-1' odata-version: @@ -3260,17 +3105,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3278,7 +3123,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:42 GMT + - Wed, 13 Jan 2021 01:26:38 GMT expires: - '-1' odata-version: @@ -3313,17 +3158,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3331,7 +3176,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:44 GMT + - Wed, 13 Jan 2021 01:26:40 GMT expires: - '-1' odata-version: @@ -3366,17 +3211,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3384,7 +3229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:46 GMT + - Wed, 13 Jan 2021 01:26:43 GMT expires: - '-1' odata-version: @@ -3419,17 +3264,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3437,7 +3282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:49 GMT + - Wed, 13 Jan 2021 01:26:45 GMT expires: - '-1' odata-version: @@ -3472,17 +3317,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3490,7 +3335,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:51 GMT + - Wed, 13 Jan 2021 01:26:47 GMT expires: - '-1' odata-version: @@ -3525,17 +3370,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3543,7 +3388,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:53 GMT + - Wed, 13 Jan 2021 01:26:50 GMT expires: - '-1' odata-version: @@ -3578,17 +3423,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3596,7 +3441,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:56 GMT + - Wed, 13 Jan 2021 01:26:52 GMT expires: - '-1' odata-version: @@ -3631,17 +3476,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3649,7 +3494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:58 GMT + - Wed, 13 Jan 2021 01:26:54 GMT expires: - '-1' odata-version: @@ -3684,17 +3529,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3702,7 +3547,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:00 GMT + - Wed, 13 Jan 2021 01:26:56 GMT expires: - '-1' odata-version: @@ -3737,17 +3582,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3755,7 +3600,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:02 GMT + - Wed, 13 Jan 2021 01:26:59 GMT expires: - '-1' odata-version: @@ -3790,17 +3635,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3808,7 +3653,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:06 GMT + - Wed, 13 Jan 2021 01:27:01 GMT expires: - '-1' odata-version: @@ -3843,17 +3688,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3861,7 +3706,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:08 GMT + - Wed, 13 Jan 2021 01:27:03 GMT expires: - '-1' odata-version: @@ -3896,17 +3741,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3914,7 +3759,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:10 GMT + - Wed, 13 Jan 2021 01:27:06 GMT expires: - '-1' odata-version: @@ -3949,17 +3794,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3967,7 +3812,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Wed, 13 Jan 2021 01:27:08 GMT expires: - '-1' odata-version: @@ -4002,17 +3847,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4020,7 +3865,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Wed, 13 Jan 2021 01:27:10 GMT expires: - '-1' odata-version: @@ -4055,17 +3900,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4073,7 +3918,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:17 GMT + - Wed, 13 Jan 2021 01:27:12 GMT expires: - '-1' odata-version: @@ -4108,17 +3953,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4126,7 +3971,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:20 GMT + - Wed, 13 Jan 2021 01:27:15 GMT expires: - '-1' odata-version: @@ -4161,17 +4006,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4179,7 +4024,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:22 GMT + - Wed, 13 Jan 2021 01:27:17 GMT expires: - '-1' odata-version: @@ -4214,17 +4059,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4232,7 +4077,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:24 GMT + - Wed, 13 Jan 2021 01:27:19 GMT expires: - '-1' odata-version: @@ -4267,17 +4112,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4285,7 +4130,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:26 GMT + - Wed, 13 Jan 2021 01:27:21 GMT expires: - '-1' odata-version: @@ -4320,17 +4165,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4338,7 +4183,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:29 GMT + - Wed, 13 Jan 2021 01:27:24 GMT expires: - '-1' odata-version: @@ -4373,17 +4218,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4391,7 +4236,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:31 GMT + - Wed, 13 Jan 2021 01:27:26 GMT expires: - '-1' odata-version: @@ -4426,17 +4271,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4444,7 +4289,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:33 GMT + - Wed, 13 Jan 2021 01:27:28 GMT expires: - '-1' odata-version: @@ -4479,17 +4324,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4497,7 +4342,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:36 GMT + - Wed, 13 Jan 2021 01:27:31 GMT expires: - '-1' odata-version: @@ -4532,17 +4377,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4550,7 +4395,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:38 GMT + - Wed, 13 Jan 2021 01:27:33 GMT expires: - '-1' odata-version: @@ -4585,17 +4430,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4603,7 +4448,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:40 GMT + - Wed, 13 Jan 2021 01:27:35 GMT expires: - '-1' odata-version: @@ -4638,17 +4483,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4656,7 +4501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:42 GMT + - Wed, 13 Jan 2021 01:27:37 GMT expires: - '-1' odata-version: @@ -4691,17 +4536,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4709,7 +4554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:45 GMT + - Wed, 13 Jan 2021 01:27:40 GMT expires: - '-1' odata-version: @@ -4744,17 +4589,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4762,7 +4607,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:47 GMT + - Wed, 13 Jan 2021 01:27:42 GMT expires: - '-1' odata-version: @@ -4797,17 +4642,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4815,7 +4660,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:49 GMT + - Wed, 13 Jan 2021 01:27:44 GMT expires: - '-1' odata-version: @@ -4850,17 +4695,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4868,7 +4713,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:52 GMT + - Wed, 13 Jan 2021 01:27:47 GMT expires: - '-1' odata-version: @@ -4903,17 +4748,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4921,7 +4766,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:54 GMT + - Wed, 13 Jan 2021 01:27:49 GMT expires: - '-1' odata-version: @@ -4956,17 +4801,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4974,7 +4819,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:56 GMT + - Wed, 13 Jan 2021 01:27:51 GMT expires: - '-1' odata-version: @@ -5009,17 +4854,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5027,7 +4872,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:58 GMT + - Wed, 13 Jan 2021 01:27:53 GMT expires: - '-1' odata-version: @@ -5062,17 +4907,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5080,7 +4925,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:01 GMT + - Wed, 13 Jan 2021 01:27:56 GMT expires: - '-1' odata-version: @@ -5115,17 +4960,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5133,7 +4978,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:03 GMT + - Wed, 13 Jan 2021 01:27:58 GMT expires: - '-1' odata-version: @@ -5168,17 +5013,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5186,7 +5031,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:05 GMT + - Wed, 13 Jan 2021 01:28:00 GMT expires: - '-1' odata-version: @@ -5221,17 +5066,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5239,7 +5084,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:08 GMT + - Wed, 13 Jan 2021 01:28:02 GMT expires: - '-1' odata-version: @@ -5274,17 +5119,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5292,7 +5137,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:10 GMT + - Wed, 13 Jan 2021 01:28:05 GMT expires: - '-1' odata-version: @@ -5327,17 +5172,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5345,7 +5190,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:12 GMT + - Wed, 13 Jan 2021 01:28:07 GMT expires: - '-1' odata-version: @@ -5380,17 +5225,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5398,7 +5243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:14 GMT + - Wed, 13 Jan 2021 01:28:09 GMT expires: - '-1' odata-version: @@ -5433,17 +5278,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5451,7 +5296,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:17 GMT + - Wed, 13 Jan 2021 01:28:12 GMT expires: - '-1' odata-version: @@ -5486,17 +5331,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5504,7 +5349,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:19 GMT + - Wed, 13 Jan 2021 01:28:14 GMT expires: - '-1' odata-version: @@ -5539,17 +5384,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5557,7 +5402,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:21 GMT + - Wed, 13 Jan 2021 01:28:16 GMT expires: - '-1' odata-version: @@ -5592,17 +5437,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5610,7 +5455,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:24 GMT + - Wed, 13 Jan 2021 01:28:19 GMT expires: - '-1' odata-version: @@ -5645,17 +5490,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5663,7 +5508,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:26 GMT + - Wed, 13 Jan 2021 01:28:21 GMT expires: - '-1' odata-version: @@ -5698,17 +5543,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5716,7 +5561,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:28 GMT + - Wed, 13 Jan 2021 01:28:23 GMT expires: - '-1' odata-version: @@ -5751,17 +5596,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5769,7 +5614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:30 GMT + - Wed, 13 Jan 2021 01:28:25 GMT expires: - '-1' odata-version: @@ -5804,17 +5649,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5822,7 +5667,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:33 GMT + - Wed, 13 Jan 2021 01:28:28 GMT expires: - '-1' odata-version: @@ -5857,17 +5702,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5875,7 +5720,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:35 GMT + - Wed, 13 Jan 2021 01:28:31 GMT expires: - '-1' odata-version: @@ -5910,17 +5755,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5928,7 +5773,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:37 GMT + - Wed, 13 Jan 2021 01:28:33 GMT expires: - '-1' odata-version: @@ -5963,17 +5808,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5981,7 +5826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:40 GMT + - Wed, 13 Jan 2021 01:28:35 GMT expires: - '-1' odata-version: @@ -6016,17 +5861,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6034,7 +5879,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:42 GMT + - Wed, 13 Jan 2021 01:28:38 GMT expires: - '-1' odata-version: @@ -6069,17 +5914,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6087,7 +5932,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:44 GMT + - Wed, 13 Jan 2021 01:28:40 GMT expires: - '-1' odata-version: @@ -6122,17 +5967,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6140,7 +5985,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:47 GMT + - Wed, 13 Jan 2021 01:28:42 GMT expires: - '-1' odata-version: @@ -6175,17 +6020,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6193,7 +6038,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:49 GMT + - Wed, 13 Jan 2021 01:28:45 GMT expires: - '-1' odata-version: @@ -6228,17 +6073,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6246,7 +6091,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:51 GMT + - Wed, 13 Jan 2021 01:28:47 GMT expires: - '-1' odata-version: @@ -6281,17 +6126,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6299,7 +6144,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:54 GMT + - Wed, 13 Jan 2021 01:28:49 GMT expires: - '-1' odata-version: @@ -6334,17 +6179,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6352,7 +6197,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:56 GMT + - Wed, 13 Jan 2021 01:28:51 GMT expires: - '-1' odata-version: @@ -6387,17 +6232,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6405,7 +6250,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:58 GMT + - Wed, 13 Jan 2021 01:28:54 GMT expires: - '-1' odata-version: @@ -6440,17 +6285,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6458,7 +6303,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:00 GMT + - Wed, 13 Jan 2021 01:28:56 GMT expires: - '-1' odata-version: @@ -6493,17 +6338,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6511,7 +6356,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:03 GMT + - Wed, 13 Jan 2021 01:28:58 GMT expires: - '-1' odata-version: @@ -6546,17 +6391,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6564,7 +6409,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:05 GMT + - Wed, 13 Jan 2021 01:29:01 GMT expires: - '-1' odata-version: @@ -6599,17 +6444,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6617,7 +6462,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:07 GMT + - Wed, 13 Jan 2021 01:29:03 GMT expires: - '-1' odata-version: @@ -6652,17 +6497,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6670,7 +6515,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:10 GMT + - Wed, 13 Jan 2021 01:29:05 GMT expires: - '-1' odata-version: @@ -6705,17 +6550,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6723,7 +6568,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:12 GMT + - Wed, 13 Jan 2021 01:29:07 GMT expires: - '-1' odata-version: @@ -6758,17 +6603,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6776,7 +6621,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:14 GMT + - Wed, 13 Jan 2021 01:29:10 GMT expires: - '-1' odata-version: @@ -6811,17 +6656,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6829,7 +6674,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:17 GMT + - Wed, 13 Jan 2021 01:29:12 GMT expires: - '-1' odata-version: @@ -6864,17 +6709,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6882,7 +6727,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:19 GMT + - Wed, 13 Jan 2021 01:29:14 GMT expires: - '-1' odata-version: @@ -6917,17 +6762,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6935,7 +6780,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:21 GMT + - Wed, 13 Jan 2021 01:29:17 GMT expires: - '-1' odata-version: @@ -6970,17 +6815,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6988,7 +6833,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:23 GMT + - Wed, 13 Jan 2021 01:29:19 GMT expires: - '-1' odata-version: @@ -7023,17 +6868,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7041,7 +6886,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:26 GMT + - Wed, 13 Jan 2021 01:29:22 GMT expires: - '-1' odata-version: @@ -7076,17 +6921,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7094,7 +6939,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:28 GMT + - Wed, 13 Jan 2021 01:29:25 GMT expires: - '-1' odata-version: @@ -7129,17 +6974,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7147,7 +6992,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:30 GMT + - Wed, 13 Jan 2021 01:29:27 GMT expires: - '-1' odata-version: @@ -7182,17 +7027,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7200,7 +7045,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:33 GMT + - Wed, 13 Jan 2021 01:29:29 GMT expires: - '-1' odata-version: @@ -7235,17 +7080,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7253,7 +7098,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:35 GMT + - Wed, 13 Jan 2021 01:29:31 GMT expires: - '-1' odata-version: @@ -7288,17 +7133,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7306,7 +7151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:37 GMT + - Wed, 13 Jan 2021 01:29:34 GMT expires: - '-1' odata-version: @@ -7341,17 +7186,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7359,7 +7204,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:39 GMT + - Wed, 13 Jan 2021 01:29:36 GMT expires: - '-1' odata-version: @@ -7394,17 +7239,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7412,7 +7257,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:42 GMT + - Wed, 13 Jan 2021 01:29:38 GMT expires: - '-1' odata-version: @@ -7447,17 +7292,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7465,7 +7310,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:44 GMT + - Wed, 13 Jan 2021 01:29:41 GMT expires: - '-1' odata-version: @@ -7500,17 +7345,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7518,7 +7363,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:46 GMT + - Wed, 13 Jan 2021 01:29:43 GMT expires: - '-1' odata-version: @@ -7553,17 +7398,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7571,7 +7416,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:50 GMT + - Wed, 13 Jan 2021 01:29:45 GMT expires: - '-1' odata-version: @@ -7606,17 +7451,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7624,7 +7469,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:52 GMT + - Wed, 13 Jan 2021 01:29:47 GMT expires: - '-1' odata-version: @@ -7659,17 +7504,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7677,7 +7522,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:54 GMT + - Wed, 13 Jan 2021 01:29:50 GMT expires: - '-1' odata-version: @@ -7712,17 +7557,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7730,7 +7575,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:57 GMT + - Wed, 13 Jan 2021 01:29:52 GMT expires: - '-1' odata-version: @@ -7765,17 +7610,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7783,7 +7628,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:59 GMT + - Wed, 13 Jan 2021 01:29:54 GMT expires: - '-1' odata-version: @@ -7818,17 +7663,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7836,7 +7681,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:01 GMT + - Wed, 13 Jan 2021 01:29:56 GMT expires: - '-1' odata-version: @@ -7871,17 +7716,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7889,7 +7734,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:04 GMT + - Wed, 13 Jan 2021 01:29:59 GMT expires: - '-1' odata-version: @@ -7924,17 +7769,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7942,7 +7787,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:06 GMT + - Wed, 13 Jan 2021 01:30:01 GMT expires: - '-1' odata-version: @@ -7977,17 +7822,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7995,7 +7840,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:08 GMT + - Wed, 13 Jan 2021 01:30:03 GMT expires: - '-1' odata-version: @@ -8030,17 +7875,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8048,7 +7893,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:10 GMT + - Wed, 13 Jan 2021 01:30:06 GMT expires: - '-1' odata-version: @@ -8083,17 +7928,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8101,7 +7946,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:13 GMT + - Wed, 13 Jan 2021 01:30:08 GMT expires: - '-1' odata-version: @@ -8136,17 +7981,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8154,7 +7999,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:15 GMT + - Wed, 13 Jan 2021 01:30:10 GMT expires: - '-1' odata-version: @@ -8189,17 +8034,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8207,7 +8052,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:17 GMT + - Wed, 13 Jan 2021 01:30:12 GMT expires: - '-1' odata-version: @@ -8242,17 +8087,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8260,7 +8105,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:20 GMT + - Wed, 13 Jan 2021 01:30:15 GMT expires: - '-1' odata-version: @@ -8295,17 +8140,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8313,7 +8158,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:22 GMT + - Wed, 13 Jan 2021 01:30:17 GMT expires: - '-1' odata-version: @@ -8348,17 +8193,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8366,7 +8211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:24 GMT + - Wed, 13 Jan 2021 01:30:19 GMT expires: - '-1' odata-version: @@ -8401,17 +8246,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8419,7 +8264,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:28 GMT + - Wed, 13 Jan 2021 01:30:22 GMT expires: - '-1' odata-version: @@ -8454,17 +8299,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8472,7 +8317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:30 GMT + - Wed, 13 Jan 2021 01:30:24 GMT expires: - '-1' odata-version: @@ -8507,17 +8352,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8525,7 +8370,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:32 GMT + - Wed, 13 Jan 2021 01:30:26 GMT expires: - '-1' odata-version: @@ -8560,17 +8405,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8578,7 +8423,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:34 GMT + - Wed, 13 Jan 2021 01:30:28 GMT expires: - '-1' odata-version: @@ -8613,17 +8458,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8631,7 +8476,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:37 GMT + - Wed, 13 Jan 2021 01:30:31 GMT expires: - '-1' odata-version: @@ -8666,17 +8511,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8684,7 +8529,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:39 GMT + - Wed, 13 Jan 2021 01:30:33 GMT expires: - '-1' odata-version: @@ -8719,17 +8564,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8737,7 +8582,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:41 GMT + - Wed, 13 Jan 2021 01:30:35 GMT expires: - '-1' odata-version: @@ -8772,17 +8617,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8790,7 +8635,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:44 GMT + - Wed, 13 Jan 2021 01:30:37 GMT expires: - '-1' odata-version: @@ -8825,17 +8670,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8843,7 +8688,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:46 GMT + - Wed, 13 Jan 2021 01:30:41 GMT expires: - '-1' odata-version: @@ -8878,17 +8723,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8896,7 +8741,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:48 GMT + - Wed, 13 Jan 2021 01:30:43 GMT expires: - '-1' odata-version: @@ -8931,17 +8776,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8949,7 +8794,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:50 GMT + - Wed, 13 Jan 2021 01:30:46 GMT expires: - '-1' odata-version: @@ -8984,17 +8829,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9002,7 +8847,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:53 GMT + - Wed, 13 Jan 2021 01:30:48 GMT expires: - '-1' odata-version: @@ -9037,17 +8882,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9055,7 +8900,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:55 GMT + - Wed, 13 Jan 2021 01:30:50 GMT expires: - '-1' odata-version: @@ -9090,17 +8935,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9108,7 +8953,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:57 GMT + - Wed, 13 Jan 2021 01:30:52 GMT expires: - '-1' odata-version: @@ -9143,17 +8988,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9161,7 +9006,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:00 GMT + - Wed, 13 Jan 2021 01:30:55 GMT expires: - '-1' odata-version: @@ -9196,17 +9041,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9214,7 +9059,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:02 GMT + - Wed, 13 Jan 2021 01:30:57 GMT expires: - '-1' odata-version: @@ -9249,17 +9094,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9267,7 +9112,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:04 GMT + - Wed, 13 Jan 2021 01:30:59 GMT expires: - '-1' odata-version: @@ -9302,17 +9147,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9320,7 +9165,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:07 GMT + - Wed, 13 Jan 2021 01:31:01 GMT expires: - '-1' odata-version: @@ -9355,17 +9200,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9373,7 +9218,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:09 GMT + - Wed, 13 Jan 2021 01:31:04 GMT expires: - '-1' odata-version: @@ -9408,17 +9253,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9426,7 +9271,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:11 GMT + - Wed, 13 Jan 2021 01:31:06 GMT expires: - '-1' odata-version: @@ -9461,17 +9306,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9479,7 +9324,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:13 GMT + - Wed, 13 Jan 2021 01:31:08 GMT expires: - '-1' odata-version: @@ -9514,17 +9359,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9532,7 +9377,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:16 GMT + - Wed, 13 Jan 2021 01:31:11 GMT expires: - '-1' odata-version: @@ -9567,17 +9412,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9585,7 +9430,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:18 GMT + - Wed, 13 Jan 2021 01:31:13 GMT expires: - '-1' odata-version: @@ -9620,17 +9465,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9638,7 +9483,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:20 GMT + - Wed, 13 Jan 2021 01:31:15 GMT expires: - '-1' odata-version: @@ -9673,17 +9518,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9691,7 +9536,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:23 GMT + - Wed, 13 Jan 2021 01:31:17 GMT expires: - '-1' odata-version: @@ -9726,17 +9571,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9744,7 +9589,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:25 GMT + - Wed, 13 Jan 2021 01:31:20 GMT expires: - '-1' odata-version: @@ -9779,17 +9624,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9797,7 +9642,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:27 GMT + - Wed, 13 Jan 2021 01:31:22 GMT expires: - '-1' odata-version: @@ -9832,17 +9677,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9850,7 +9695,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:30 GMT + - Wed, 13 Jan 2021 01:31:24 GMT expires: - '-1' odata-version: @@ -9885,17 +9730,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9903,7 +9748,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Wed, 13 Jan 2021 01:31:27 GMT expires: - '-1' odata-version: @@ -9938,17 +9783,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9956,7 +9801,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Wed, 13 Jan 2021 01:31:29 GMT expires: - '-1' odata-version: @@ -9991,17 +9836,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10009,7 +9854,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Wed, 13 Jan 2021 01:31:32 GMT expires: - '-1' odata-version: @@ -10044,17 +9889,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10062,7 +9907,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:39 GMT + - Wed, 13 Jan 2021 01:31:34 GMT expires: - '-1' odata-version: @@ -10097,17 +9942,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10115,7 +9960,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:41 GMT + - Wed, 13 Jan 2021 01:31:37 GMT expires: - '-1' odata-version: @@ -10150,17 +9995,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10168,7 +10013,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:43 GMT + - Wed, 13 Jan 2021 01:31:39 GMT expires: - '-1' odata-version: @@ -10203,17 +10048,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10221,7 +10066,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:46 GMT + - Wed, 13 Jan 2021 01:31:41 GMT expires: - '-1' odata-version: @@ -10256,17 +10101,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10274,7 +10119,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:48 GMT + - Wed, 13 Jan 2021 01:31:44 GMT expires: - '-1' odata-version: @@ -10309,17 +10154,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10327,7 +10172,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:50 GMT + - Wed, 13 Jan 2021 01:31:46 GMT expires: - '-1' odata-version: @@ -10362,17 +10207,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10380,7 +10225,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:52 GMT + - Wed, 13 Jan 2021 01:31:48 GMT expires: - '-1' odata-version: @@ -10415,17 +10260,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10433,7 +10278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Wed, 13 Jan 2021 01:31:50 GMT expires: - '-1' odata-version: @@ -10468,17 +10313,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10486,7 +10331,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:57 GMT + - Wed, 13 Jan 2021 01:31:53 GMT expires: - '-1' odata-version: @@ -10521,17 +10366,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10539,7 +10384,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:59 GMT + - Wed, 13 Jan 2021 01:31:55 GMT expires: - '-1' odata-version: @@ -10574,17 +10419,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10592,7 +10437,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:02 GMT + - Wed, 13 Jan 2021 01:31:57 GMT expires: - '-1' odata-version: @@ -10627,17 +10472,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10645,7 +10490,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:04 GMT + - Wed, 13 Jan 2021 01:32:00 GMT expires: - '-1' odata-version: @@ -10680,17 +10525,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10698,7 +10543,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Wed, 13 Jan 2021 01:32:02 GMT expires: - '-1' odata-version: @@ -10733,17 +10578,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10751,7 +10596,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Wed, 13 Jan 2021 01:32:04 GMT expires: - '-1' odata-version: @@ -10786,17 +10631,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10804,7 +10649,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:11 GMT + - Wed, 13 Jan 2021 01:32:06 GMT expires: - '-1' odata-version: @@ -10839,17 +10684,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10857,7 +10702,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:13 GMT + - Wed, 13 Jan 2021 01:32:09 GMT expires: - '-1' odata-version: @@ -10892,17 +10737,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10910,7 +10755,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:15 GMT + - Wed, 13 Jan 2021 01:32:11 GMT expires: - '-1' odata-version: @@ -10945,17 +10790,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10963,7 +10808,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:18 GMT + - Wed, 13 Jan 2021 01:32:13 GMT expires: - '-1' odata-version: @@ -10998,17 +10843,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11016,7 +10861,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:20 GMT + - Wed, 13 Jan 2021 01:32:15 GMT expires: - '-1' odata-version: @@ -11051,17 +10896,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11069,7 +10914,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:22 GMT + - Wed, 13 Jan 2021 01:32:18 GMT expires: - '-1' odata-version: @@ -11104,17 +10949,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11122,7 +10967,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Wed, 13 Jan 2021 01:32:20 GMT expires: - '-1' odata-version: @@ -11157,17 +11002,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11175,7 +11020,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Wed, 13 Jan 2021 01:32:22 GMT expires: - '-1' odata-version: @@ -11210,17 +11055,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11228,7 +11073,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Wed, 13 Jan 2021 01:32:24 GMT expires: - '-1' odata-version: @@ -11263,17 +11108,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11281,7 +11126,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Wed, 13 Jan 2021 01:32:27 GMT expires: - '-1' odata-version: @@ -11316,17 +11161,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11334,7 +11179,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:34 GMT + - Wed, 13 Jan 2021 01:32:29 GMT expires: - '-1' odata-version: @@ -11369,17 +11214,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11387,7 +11232,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:36 GMT + - Wed, 13 Jan 2021 01:32:31 GMT expires: - '-1' odata-version: @@ -11422,17 +11267,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11440,7 +11285,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:38 GMT + - Wed, 13 Jan 2021 01:32:34 GMT expires: - '-1' odata-version: @@ -11475,17 +11320,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11493,7 +11338,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:41 GMT + - Wed, 13 Jan 2021 01:32:36 GMT expires: - '-1' odata-version: @@ -11528,17 +11373,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11546,7 +11391,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:43 GMT + - Wed, 13 Jan 2021 01:32:38 GMT expires: - '-1' odata-version: @@ -11581,17 +11426,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11599,7 +11444,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:45 GMT + - Wed, 13 Jan 2021 01:32:40 GMT expires: - '-1' odata-version: @@ -11634,17 +11479,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11652,7 +11497,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Wed, 13 Jan 2021 01:32:43 GMT expires: - '-1' odata-version: @@ -11687,17 +11532,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11705,7 +11550,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:50 GMT + - Wed, 13 Jan 2021 01:32:45 GMT expires: - '-1' odata-version: @@ -11740,17 +11585,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11758,7 +11603,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:52 GMT + - Wed, 13 Jan 2021 01:32:47 GMT expires: - '-1' odata-version: @@ -11793,17 +11638,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11811,7 +11656,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:54 GMT + - Wed, 13 Jan 2021 01:32:49 GMT expires: - '-1' odata-version: @@ -11846,17 +11691,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11864,7 +11709,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Wed, 13 Jan 2021 01:32:52 GMT expires: - '-1' odata-version: @@ -11899,17 +11744,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11917,7 +11762,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:01 GMT + - Wed, 13 Jan 2021 01:32:54 GMT expires: - '-1' odata-version: @@ -11952,17 +11797,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11970,7 +11815,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:04 GMT + - Wed, 13 Jan 2021 01:32:56 GMT expires: - '-1' odata-version: @@ -12005,17 +11850,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12023,7 +11868,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:06 GMT + - Wed, 13 Jan 2021 01:32:59 GMT expires: - '-1' odata-version: @@ -12058,17 +11903,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12076,7 +11921,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:08 GMT + - Wed, 13 Jan 2021 01:33:01 GMT expires: - '-1' odata-version: @@ -12111,17 +11956,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12129,7 +11974,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Wed, 13 Jan 2021 01:33:03 GMT expires: - '-1' odata-version: @@ -12164,17 +12009,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12182,7 +12027,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Wed, 13 Jan 2021 01:33:05 GMT expires: - '-1' odata-version: @@ -12217,17 +12062,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12235,7 +12080,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:15 GMT + - Wed, 13 Jan 2021 01:33:08 GMT expires: - '-1' odata-version: @@ -12270,17 +12115,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12288,7 +12133,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:17 GMT + - Wed, 13 Jan 2021 01:33:10 GMT expires: - '-1' odata-version: @@ -12323,17 +12168,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12341,7 +12186,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:20 GMT + - Wed, 13 Jan 2021 01:33:12 GMT expires: - '-1' odata-version: @@ -12376,17 +12221,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12394,7 +12239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:22 GMT + - Wed, 13 Jan 2021 01:33:14 GMT expires: - '-1' odata-version: @@ -12429,17 +12274,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12447,7 +12292,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Wed, 13 Jan 2021 01:33:17 GMT expires: - '-1' odata-version: @@ -12482,17 +12327,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12500,7 +12345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:27 GMT + - Wed, 13 Jan 2021 01:33:19 GMT expires: - '-1' odata-version: @@ -12535,17 +12380,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12553,7 +12398,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:29 GMT + - Wed, 13 Jan 2021 01:33:21 GMT expires: - '-1' odata-version: @@ -12588,17 +12433,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12606,7 +12451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:31 GMT + - Wed, 13 Jan 2021 01:33:24 GMT expires: - '-1' odata-version: @@ -12641,17 +12486,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12659,7 +12504,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:33 GMT + - Wed, 13 Jan 2021 01:33:26 GMT expires: - '-1' odata-version: @@ -12694,17 +12539,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12712,7 +12557,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:36 GMT + - Wed, 13 Jan 2021 01:33:28 GMT expires: - '-1' odata-version: @@ -12747,17 +12592,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12765,7 +12610,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:38 GMT + - Wed, 13 Jan 2021 01:33:30 GMT expires: - '-1' odata-version: @@ -12800,17 +12645,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12818,7 +12663,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:40 GMT + - Wed, 13 Jan 2021 01:33:33 GMT expires: - '-1' odata-version: @@ -12853,17 +12698,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12871,7 +12716,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Wed, 13 Jan 2021 01:33:35 GMT expires: - '-1' odata-version: @@ -12906,17 +12751,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12924,7 +12769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Wed, 13 Jan 2021 01:33:37 GMT expires: - '-1' odata-version: @@ -12959,17 +12804,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12977,7 +12822,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Wed, 13 Jan 2021 01:33:40 GMT expires: - '-1' odata-version: @@ -13012,17 +12857,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13030,7 +12875,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Wed, 13 Jan 2021 01:33:42 GMT expires: - '-1' odata-version: @@ -13065,17 +12910,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13083,7 +12928,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:52 GMT + - Wed, 13 Jan 2021 01:33:44 GMT expires: - '-1' odata-version: @@ -13118,17 +12963,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13136,7 +12981,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:54 GMT + - Wed, 13 Jan 2021 01:33:47 GMT expires: - '-1' odata-version: @@ -13171,17 +13016,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13189,7 +13034,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:56 GMT + - Wed, 13 Jan 2021 01:33:50 GMT expires: - '-1' odata-version: @@ -13224,17 +13069,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13242,7 +13087,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:59 GMT + - Wed, 13 Jan 2021 01:33:52 GMT expires: - '-1' odata-version: @@ -13277,17 +13122,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13295,7 +13140,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:01 GMT + - Wed, 13 Jan 2021 01:33:54 GMT expires: - '-1' odata-version: @@ -13330,17 +13175,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13348,7 +13193,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:03 GMT + - Wed, 13 Jan 2021 01:33:57 GMT expires: - '-1' odata-version: @@ -13383,17 +13228,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13401,7 +13246,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:05 GMT + - Wed, 13 Jan 2021 01:33:59 GMT expires: - '-1' odata-version: @@ -13436,17 +13281,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13454,7 +13299,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:08 GMT + - Wed, 13 Jan 2021 01:34:01 GMT expires: - '-1' odata-version: @@ -13489,17 +13334,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13507,7 +13352,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:10 GMT + - Wed, 13 Jan 2021 01:34:03 GMT expires: - '-1' odata-version: @@ -13542,17 +13387,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13560,7 +13405,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:12 GMT + - Wed, 13 Jan 2021 01:34:07 GMT expires: - '-1' odata-version: @@ -13595,17 +13440,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13613,7 +13458,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:15 GMT + - Wed, 13 Jan 2021 01:34:09 GMT expires: - '-1' odata-version: @@ -13648,17 +13493,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13666,7 +13511,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:17 GMT + - Wed, 13 Jan 2021 01:34:12 GMT expires: - '-1' odata-version: @@ -13701,17 +13546,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13719,7 +13564,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:19 GMT + - Wed, 13 Jan 2021 01:34:14 GMT expires: - '-1' odata-version: @@ -13754,17 +13599,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13772,7 +13617,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:21 GMT + - Wed, 13 Jan 2021 01:34:16 GMT expires: - '-1' odata-version: @@ -13807,17 +13652,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13825,7 +13670,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:24 GMT + - Wed, 13 Jan 2021 01:34:18 GMT expires: - '-1' odata-version: @@ -13860,17 +13705,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13878,7 +13723,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:26 GMT + - Wed, 13 Jan 2021 01:34:21 GMT expires: - '-1' odata-version: @@ -13913,17 +13758,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13931,7 +13776,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Wed, 13 Jan 2021 01:34:23 GMT expires: - '-1' odata-version: @@ -13966,17 +13811,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13984,7 +13829,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:31 GMT + - Wed, 13 Jan 2021 01:34:25 GMT expires: - '-1' odata-version: @@ -14019,17 +13864,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14037,7 +13882,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:33 GMT + - Wed, 13 Jan 2021 01:34:28 GMT expires: - '-1' odata-version: @@ -14072,17 +13917,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14090,7 +13935,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:35 GMT + - Wed, 13 Jan 2021 01:34:30 GMT expires: - '-1' odata-version: @@ -14125,17 +13970,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14143,7 +13988,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:37 GMT + - Wed, 13 Jan 2021 01:34:32 GMT expires: - '-1' odata-version: @@ -14178,17 +14023,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14196,7 +14041,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:40 GMT + - Wed, 13 Jan 2021 01:34:35 GMT expires: - '-1' odata-version: @@ -14231,17 +14076,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14249,7 +14094,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:42 GMT + - Wed, 13 Jan 2021 01:34:37 GMT expires: - '-1' odata-version: @@ -14284,17 +14129,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14302,7 +14147,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:44 GMT + - Wed, 13 Jan 2021 01:34:39 GMT expires: - '-1' odata-version: @@ -14337,17 +14182,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14355,7 +14200,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:47 GMT + - Wed, 13 Jan 2021 01:34:41 GMT expires: - '-1' odata-version: @@ -14390,17 +14235,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14408,7 +14253,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:49 GMT + - Wed, 13 Jan 2021 01:34:44 GMT expires: - '-1' odata-version: @@ -14443,17 +14288,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14461,7 +14306,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:51 GMT + - Wed, 13 Jan 2021 01:34:46 GMT expires: - '-1' odata-version: @@ -14496,17 +14341,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14514,7 +14359,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:53 GMT + - Wed, 13 Jan 2021 01:34:48 GMT expires: - '-1' odata-version: @@ -14549,17 +14394,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14567,7 +14412,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:56 GMT + - Wed, 13 Jan 2021 01:34:51 GMT expires: - '-1' odata-version: @@ -14602,17 +14447,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14620,7 +14465,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:58 GMT + - Wed, 13 Jan 2021 01:34:53 GMT expires: - '-1' odata-version: @@ -14655,17 +14500,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14673,7 +14518,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:00 GMT + - Wed, 13 Jan 2021 01:34:55 GMT expires: - '-1' odata-version: @@ -14708,17 +14553,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14726,7 +14571,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:03 GMT + - Wed, 13 Jan 2021 01:34:57 GMT expires: - '-1' odata-version: @@ -14761,17 +14606,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14779,7 +14624,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:06 GMT + - Wed, 13 Jan 2021 01:35:00 GMT expires: - '-1' odata-version: @@ -14814,17 +14659,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14832,7 +14677,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:08 GMT + - Wed, 13 Jan 2021 01:35:02 GMT expires: - '-1' odata-version: @@ -14867,17 +14712,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14885,7 +14730,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:11 GMT + - Wed, 13 Jan 2021 01:35:04 GMT expires: - '-1' odata-version: @@ -14920,17 +14765,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14938,7 +14783,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:14 GMT + - Wed, 13 Jan 2021 01:35:07 GMT expires: - '-1' odata-version: @@ -14973,17 +14818,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14991,7 +14836,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:16 GMT + - Wed, 13 Jan 2021 01:35:09 GMT expires: - '-1' odata-version: @@ -15026,17 +14871,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15044,7 +14889,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:19 GMT + - Wed, 13 Jan 2021 01:35:11 GMT expires: - '-1' odata-version: @@ -15079,17 +14924,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15097,7 +14942,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:21 GMT + - Wed, 13 Jan 2021 01:35:13 GMT expires: - '-1' odata-version: @@ -15132,17 +14977,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15150,7 +14995,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:23 GMT + - Wed, 13 Jan 2021 01:35:16 GMT expires: - '-1' odata-version: @@ -15185,17 +15030,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15203,7 +15048,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:25 GMT + - Wed, 13 Jan 2021 01:35:18 GMT expires: - '-1' odata-version: @@ -15238,17 +15083,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15256,7 +15101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:28 GMT + - Wed, 13 Jan 2021 01:35:20 GMT expires: - '-1' odata-version: @@ -15291,17 +15136,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15309,7 +15154,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:30 GMT + - Wed, 13 Jan 2021 01:35:23 GMT expires: - '-1' odata-version: @@ -15344,17 +15189,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15362,7 +15207,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Wed, 13 Jan 2021 01:35:25 GMT expires: - '-1' odata-version: @@ -15397,17 +15242,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15415,7 +15260,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:35 GMT + - Wed, 13 Jan 2021 01:35:27 GMT expires: - '-1' odata-version: @@ -15450,17 +15295,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15468,7 +15313,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:37 GMT + - Wed, 13 Jan 2021 01:35:29 GMT expires: - '-1' odata-version: @@ -15503,17 +15348,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15521,7 +15366,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:39 GMT + - Wed, 13 Jan 2021 01:35:32 GMT expires: - '-1' odata-version: @@ -15556,17 +15401,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15574,7 +15419,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Wed, 13 Jan 2021 01:35:34 GMT expires: - '-1' odata-version: @@ -15609,17 +15454,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15627,7 +15472,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:44 GMT + - Wed, 13 Jan 2021 01:35:36 GMT expires: - '-1' odata-version: @@ -15662,17 +15507,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15680,7 +15525,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:46 GMT + - Wed, 13 Jan 2021 01:35:39 GMT expires: - '-1' odata-version: @@ -15715,17 +15560,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15733,7 +15578,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:48 GMT + - Wed, 13 Jan 2021 01:35:41 GMT expires: - '-1' odata-version: @@ -15768,17 +15613,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15786,7 +15631,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Wed, 13 Jan 2021 01:35:43 GMT expires: - '-1' odata-version: @@ -15821,17 +15666,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15839,7 +15684,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Wed, 13 Jan 2021 01:35:46 GMT expires: - '-1' odata-version: @@ -15874,17 +15719,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15892,7 +15737,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:55 GMT + - Wed, 13 Jan 2021 01:35:48 GMT expires: - '-1' odata-version: @@ -15927,17 +15772,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15945,7 +15790,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:57 GMT + - Wed, 13 Jan 2021 01:35:50 GMT expires: - '-1' odata-version: @@ -15980,17 +15825,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15998,7 +15843,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Wed, 13 Jan 2021 01:35:53 GMT expires: - '-1' odata-version: @@ -16033,17 +15878,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16051,7 +15896,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Wed, 13 Jan 2021 01:35:55 GMT expires: - '-1' odata-version: @@ -16086,17 +15931,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16104,7 +15949,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Wed, 13 Jan 2021 01:35:57 GMT expires: - '-1' odata-version: @@ -16139,17 +15984,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16157,7 +16002,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:07 GMT + - Wed, 13 Jan 2021 01:35:59 GMT expires: - '-1' odata-version: @@ -16192,17 +16037,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16210,7 +16055,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:09 GMT + - Wed, 13 Jan 2021 01:36:02 GMT expires: - '-1' odata-version: @@ -16245,17 +16090,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16263,7 +16108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:11 GMT + - Wed, 13 Jan 2021 01:36:04 GMT expires: - '-1' odata-version: @@ -16298,17 +16143,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16316,7 +16161,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:13 GMT + - Wed, 13 Jan 2021 01:36:06 GMT expires: - '-1' odata-version: @@ -16351,17 +16196,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16369,7 +16214,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:16 GMT + - Wed, 13 Jan 2021 01:36:08 GMT expires: - '-1' odata-version: @@ -16404,17 +16249,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16422,7 +16267,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:18 GMT + - Wed, 13 Jan 2021 01:36:11 GMT expires: - '-1' odata-version: @@ -16457,17 +16302,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16475,7 +16320,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:20 GMT + - Wed, 13 Jan 2021 01:36:13 GMT expires: - '-1' odata-version: @@ -16510,17 +16355,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16528,7 +16373,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Wed, 13 Jan 2021 01:36:15 GMT expires: - '-1' odata-version: @@ -16563,17 +16408,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16581,7 +16426,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Wed, 13 Jan 2021 01:36:18 GMT expires: - '-1' odata-version: @@ -16616,17 +16461,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16634,7 +16479,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Wed, 13 Jan 2021 01:36:20 GMT expires: - '-1' odata-version: @@ -16669,17 +16514,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16687,7 +16532,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Wed, 13 Jan 2021 01:36:22 GMT expires: - '-1' odata-version: @@ -16722,17 +16567,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16740,7 +16585,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:32 GMT + - Wed, 13 Jan 2021 01:36:24 GMT expires: - '-1' odata-version: @@ -16775,17 +16620,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16793,7 +16638,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Wed, 13 Jan 2021 01:36:27 GMT expires: - '-1' odata-version: @@ -16828,17 +16673,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16846,7 +16691,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Wed, 13 Jan 2021 01:36:30 GMT expires: - '-1' odata-version: @@ -16881,17 +16726,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16899,7 +16744,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:39 GMT + - Wed, 13 Jan 2021 01:36:32 GMT expires: - '-1' odata-version: @@ -16934,17 +16779,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16952,7 +16797,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:41 GMT + - Wed, 13 Jan 2021 01:36:35 GMT expires: - '-1' odata-version: @@ -16987,17 +16832,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17005,7 +16850,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:43 GMT + - Wed, 13 Jan 2021 01:36:37 GMT expires: - '-1' odata-version: @@ -17040,17 +16885,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17058,7 +16903,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:45 GMT + - Wed, 13 Jan 2021 01:36:39 GMT expires: - '-1' odata-version: @@ -17093,17 +16938,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17111,7 +16956,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:48 GMT + - Wed, 13 Jan 2021 01:36:41 GMT expires: - '-1' odata-version: @@ -17146,17 +16991,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17164,7 +17009,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:50 GMT + - Wed, 13 Jan 2021 01:36:44 GMT expires: - '-1' odata-version: @@ -17199,17 +17044,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17217,7 +17062,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:52 GMT + - Wed, 13 Jan 2021 01:36:46 GMT expires: - '-1' odata-version: @@ -17252,17 +17097,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17270,7 +17115,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:55 GMT + - Wed, 13 Jan 2021 01:36:48 GMT expires: - '-1' odata-version: @@ -17305,17 +17150,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17323,7 +17168,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:57 GMT + - Wed, 13 Jan 2021 01:36:51 GMT expires: - '-1' odata-version: @@ -17358,17 +17203,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17376,7 +17221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:59 GMT + - Wed, 13 Jan 2021 01:36:53 GMT expires: - '-1' odata-version: @@ -17411,17 +17256,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17429,7 +17274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:01 GMT + - Wed, 13 Jan 2021 01:36:55 GMT expires: - '-1' odata-version: @@ -17464,17 +17309,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17482,7 +17327,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:04 GMT + - Wed, 13 Jan 2021 01:36:57 GMT expires: - '-1' odata-version: @@ -17517,17 +17362,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17535,7 +17380,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:06 GMT + - Wed, 13 Jan 2021 01:37:00 GMT expires: - '-1' odata-version: @@ -17570,17 +17415,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17588,7 +17433,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:08 GMT + - Wed, 13 Jan 2021 01:37:02 GMT expires: - '-1' odata-version: @@ -17623,17 +17468,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17641,7 +17486,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:11 GMT + - Wed, 13 Jan 2021 01:37:04 GMT expires: - '-1' odata-version: @@ -17676,17 +17521,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17694,7 +17539,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:13 GMT + - Wed, 13 Jan 2021 01:37:07 GMT expires: - '-1' odata-version: @@ -17729,17 +17574,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17747,7 +17592,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:15 GMT + - Wed, 13 Jan 2021 01:37:09 GMT expires: - '-1' odata-version: @@ -17782,17 +17627,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17800,7 +17645,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Wed, 13 Jan 2021 01:37:11 GMT expires: - '-1' odata-version: @@ -17835,17 +17680,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17853,7 +17698,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Wed, 13 Jan 2021 01:37:13 GMT expires: - '-1' odata-version: @@ -17888,17 +17733,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17906,7 +17751,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:22 GMT + - Wed, 13 Jan 2021 01:37:16 GMT expires: - '-1' odata-version: @@ -17941,17 +17786,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17959,7 +17804,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:24 GMT + - Wed, 13 Jan 2021 01:37:18 GMT expires: - '-1' odata-version: @@ -17994,17 +17839,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18012,7 +17857,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:27 GMT + - Wed, 13 Jan 2021 01:37:20 GMT expires: - '-1' odata-version: @@ -18047,17 +17892,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18065,7 +17910,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:29 GMT + - Wed, 13 Jan 2021 01:37:23 GMT expires: - '-1' odata-version: @@ -18100,17 +17945,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18118,7 +17963,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:31 GMT + - Wed, 13 Jan 2021 01:37:25 GMT expires: - '-1' odata-version: @@ -18153,17 +17998,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18171,7 +18016,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:34 GMT + - Wed, 13 Jan 2021 01:37:27 GMT expires: - '-1' odata-version: @@ -18206,17 +18051,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18224,7 +18069,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:36 GMT + - Wed, 13 Jan 2021 01:37:29 GMT expires: - '-1' odata-version: @@ -18259,17 +18104,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18277,7 +18122,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:38 GMT + - Wed, 13 Jan 2021 01:37:32 GMT expires: - '-1' odata-version: @@ -18312,17 +18157,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18330,7 +18175,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:40 GMT + - Wed, 13 Jan 2021 01:37:34 GMT expires: - '-1' odata-version: @@ -18365,17 +18210,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18383,7 +18228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:43 GMT + - Wed, 13 Jan 2021 01:37:36 GMT expires: - '-1' odata-version: @@ -18418,17 +18263,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18436,7 +18281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:45 GMT + - Wed, 13 Jan 2021 01:37:38 GMT expires: - '-1' odata-version: @@ -18471,17 +18316,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18489,7 +18334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:47 GMT + - Wed, 13 Jan 2021 01:37:41 GMT expires: - '-1' odata-version: @@ -18524,17 +18369,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18542,7 +18387,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:50 GMT + - Wed, 13 Jan 2021 01:37:43 GMT expires: - '-1' odata-version: @@ -18577,17 +18422,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18595,7 +18440,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:52 GMT + - Wed, 13 Jan 2021 01:37:45 GMT expires: - '-1' odata-version: @@ -18630,17 +18475,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18648,7 +18493,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:54 GMT + - Wed, 13 Jan 2021 01:37:48 GMT expires: - '-1' odata-version: @@ -18683,17 +18528,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18701,7 +18546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Wed, 13 Jan 2021 01:37:50 GMT expires: - '-1' odata-version: @@ -18736,17 +18581,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18754,7 +18599,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:59 GMT + - Wed, 13 Jan 2021 01:37:52 GMT expires: - '-1' odata-version: @@ -18789,17 +18634,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18807,7 +18652,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:01 GMT + - Wed, 13 Jan 2021 01:37:54 GMT expires: - '-1' odata-version: @@ -18842,17 +18687,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18860,7 +18705,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:03 GMT + - Wed, 13 Jan 2021 01:37:57 GMT expires: - '-1' odata-version: @@ -18895,17 +18740,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18913,7 +18758,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:06 GMT + - Wed, 13 Jan 2021 01:37:59 GMT expires: - '-1' odata-version: @@ -18948,17 +18793,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18966,7 +18811,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:08 GMT + - Wed, 13 Jan 2021 01:38:01 GMT expires: - '-1' odata-version: @@ -19001,17 +18846,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19019,7 +18864,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:10 GMT + - Wed, 13 Jan 2021 01:38:03 GMT expires: - '-1' odata-version: @@ -19054,17 +18899,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19072,7 +18917,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:12 GMT + - Wed, 13 Jan 2021 01:38:06 GMT expires: - '-1' odata-version: @@ -19107,17 +18952,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19125,7 +18970,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:15 GMT + - Wed, 13 Jan 2021 01:38:08 GMT expires: - '-1' odata-version: @@ -19160,17 +19005,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19178,7 +19023,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:17 GMT + - Wed, 13 Jan 2021 01:38:10 GMT expires: - '-1' odata-version: @@ -19213,17 +19058,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19231,7 +19076,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:19 GMT + - Wed, 13 Jan 2021 01:38:13 GMT expires: - '-1' odata-version: @@ -19266,17 +19111,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19284,7 +19129,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:22 GMT + - Wed, 13 Jan 2021 01:38:15 GMT expires: - '-1' odata-version: @@ -19319,17 +19164,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19337,7 +19182,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:24 GMT + - Wed, 13 Jan 2021 01:38:17 GMT expires: - '-1' odata-version: @@ -19372,17 +19217,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19390,7 +19235,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:26 GMT + - Wed, 13 Jan 2021 01:38:19 GMT expires: - '-1' odata-version: @@ -19425,17 +19270,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19443,7 +19288,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:30 GMT + - Wed, 13 Jan 2021 01:38:22 GMT expires: - '-1' odata-version: @@ -19478,17 +19323,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19496,7 +19341,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:32 GMT + - Wed, 13 Jan 2021 01:38:24 GMT expires: - '-1' odata-version: @@ -19531,17 +19376,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19549,7 +19394,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:34 GMT + - Wed, 13 Jan 2021 01:38:26 GMT expires: - '-1' odata-version: @@ -19584,17 +19429,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19602,7 +19447,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:36 GMT + - Wed, 13 Jan 2021 01:38:29 GMT expires: - '-1' odata-version: @@ -19637,17 +19482,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19655,7 +19500,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:39 GMT + - Wed, 13 Jan 2021 01:38:31 GMT expires: - '-1' odata-version: @@ -19690,17 +19535,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19708,7 +19553,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:41 GMT + - Wed, 13 Jan 2021 01:38:33 GMT expires: - '-1' odata-version: @@ -19743,17 +19588,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19761,7 +19606,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:43 GMT + - Wed, 13 Jan 2021 01:38:35 GMT expires: - '-1' odata-version: @@ -19796,17 +19641,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19814,7 +19659,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Wed, 13 Jan 2021 01:38:39 GMT expires: - '-1' odata-version: @@ -19849,17 +19694,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19867,7 +19712,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:48 GMT + - Wed, 13 Jan 2021 01:38:41 GMT expires: - '-1' odata-version: @@ -19902,17 +19747,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19920,7 +19765,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:50 GMT + - Wed, 13 Jan 2021 01:38:43 GMT expires: - '-1' odata-version: @@ -19955,17 +19800,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19973,7 +19818,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:52 GMT + - Wed, 13 Jan 2021 01:38:46 GMT expires: - '-1' odata-version: @@ -20008,17 +19853,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20026,7 +19871,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:55 GMT + - Wed, 13 Jan 2021 01:38:48 GMT expires: - '-1' odata-version: @@ -20061,17 +19906,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20079,7 +19924,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:57 GMT + - Wed, 13 Jan 2021 01:38:51 GMT expires: - '-1' odata-version: @@ -20114,17 +19959,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20132,7 +19977,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Wed, 13 Jan 2021 01:38:54 GMT expires: - '-1' odata-version: @@ -20167,17 +20012,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20185,7 +20030,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:02 GMT + - Wed, 13 Jan 2021 01:38:56 GMT expires: - '-1' odata-version: @@ -20220,17 +20065,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20238,7 +20083,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:04 GMT + - Wed, 13 Jan 2021 01:38:58 GMT expires: - '-1' odata-version: @@ -20273,17 +20118,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20291,7 +20136,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:06 GMT + - Wed, 13 Jan 2021 01:39:00 GMT expires: - '-1' odata-version: @@ -20326,17 +20171,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20344,7 +20189,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:08 GMT + - Wed, 13 Jan 2021 01:39:03 GMT expires: - '-1' odata-version: @@ -20379,17 +20224,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20397,7 +20242,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:11 GMT + - Wed, 13 Jan 2021 01:39:05 GMT expires: - '-1' odata-version: @@ -20432,17 +20277,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20450,7 +20295,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:13 GMT + - Wed, 13 Jan 2021 01:39:07 GMT expires: - '-1' odata-version: @@ -20485,17 +20330,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20503,7 +20348,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:15 GMT + - Wed, 13 Jan 2021 01:39:10 GMT expires: - '-1' odata-version: @@ -20538,17 +20383,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20556,7 +20401,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Wed, 13 Jan 2021 01:39:12 GMT expires: - '-1' odata-version: @@ -20591,17 +20436,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20609,7 +20454,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:20 GMT + - Wed, 13 Jan 2021 01:39:14 GMT expires: - '-1' odata-version: @@ -20644,17 +20489,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20662,7 +20507,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:22 GMT + - Wed, 13 Jan 2021 01:39:16 GMT expires: - '-1' odata-version: @@ -20697,17 +20542,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20715,7 +20560,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:24 GMT + - Wed, 13 Jan 2021 01:39:19 GMT expires: - '-1' odata-version: @@ -20750,17 +20595,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20768,7 +20613,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:27 GMT + - Wed, 13 Jan 2021 01:39:21 GMT expires: - '-1' odata-version: @@ -20803,17 +20648,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20821,7 +20666,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:29 GMT + - Wed, 13 Jan 2021 01:39:23 GMT expires: - '-1' odata-version: @@ -20856,17 +20701,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20874,7 +20719,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:31 GMT + - Wed, 13 Jan 2021 01:39:25 GMT expires: - '-1' odata-version: @@ -20909,17 +20754,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20927,7 +20772,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:34 GMT + - Wed, 13 Jan 2021 01:39:28 GMT expires: - '-1' odata-version: @@ -20962,17 +20807,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20980,7 +20825,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:36 GMT + - Wed, 13 Jan 2021 01:39:30 GMT expires: - '-1' odata-version: @@ -21015,17 +20860,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21033,7 +20878,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:38 GMT + - Wed, 13 Jan 2021 01:39:32 GMT expires: - '-1' odata-version: @@ -21068,17 +20913,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21086,7 +20931,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:41 GMT + - Wed, 13 Jan 2021 01:39:35 GMT expires: - '-1' odata-version: @@ -21121,17 +20966,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21139,7 +20984,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Wed, 13 Jan 2021 01:39:37 GMT expires: - '-1' odata-version: @@ -21174,17 +21019,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21192,7 +21037,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Wed, 13 Jan 2021 01:39:39 GMT expires: - '-1' odata-version: @@ -21227,17 +21072,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21245,7 +21090,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:48 GMT + - Wed, 13 Jan 2021 01:39:41 GMT expires: - '-1' odata-version: @@ -21280,17 +21125,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21298,7 +21143,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:50 GMT + - Wed, 13 Jan 2021 01:39:44 GMT expires: - '-1' odata-version: @@ -21333,17 +21178,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21351,7 +21196,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:52 GMT + - Wed, 13 Jan 2021 01:39:46 GMT expires: - '-1' odata-version: @@ -21386,17 +21231,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21404,7 +21249,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:54 GMT + - Wed, 13 Jan 2021 01:39:48 GMT expires: - '-1' odata-version: @@ -21439,17 +21284,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21457,7 +21302,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:57 GMT + - Wed, 13 Jan 2021 01:39:50 GMT expires: - '-1' odata-version: @@ -21492,17 +21337,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21510,7 +21355,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:59 GMT + - Wed, 13 Jan 2021 01:39:53 GMT expires: - '-1' odata-version: @@ -21545,17 +21390,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21563,7 +21408,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:01 GMT + - Wed, 13 Jan 2021 01:39:55 GMT expires: - '-1' odata-version: @@ -21598,17 +21443,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21616,7 +21461,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Wed, 13 Jan 2021 01:39:57 GMT expires: - '-1' odata-version: @@ -21651,17 +21496,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21669,7 +21514,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Wed, 13 Jan 2021 01:39:59 GMT expires: - '-1' odata-version: @@ -21704,17 +21549,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21722,7 +21567,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Wed, 13 Jan 2021 01:40:02 GMT expires: - '-1' odata-version: @@ -21757,17 +21602,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21775,7 +21620,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:10 GMT + - Wed, 13 Jan 2021 01:40:04 GMT expires: - '-1' odata-version: @@ -21810,17 +21655,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21828,7 +21673,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Wed, 13 Jan 2021 01:40:06 GMT expires: - '-1' odata-version: @@ -21863,17 +21708,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21881,7 +21726,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Wed, 13 Jan 2021 01:40:09 GMT expires: - '-1' odata-version: @@ -21916,17 +21761,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21934,7 +21779,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Wed, 13 Jan 2021 01:40:11 GMT expires: - '-1' odata-version: @@ -21969,17 +21814,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21987,7 +21832,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:20 GMT + - Wed, 13 Jan 2021 01:40:13 GMT expires: - '-1' odata-version: @@ -22022,17 +21867,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22040,7 +21885,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Wed, 13 Jan 2021 01:40:15 GMT expires: - '-1' odata-version: @@ -22075,17 +21920,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22093,7 +21938,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Wed, 13 Jan 2021 01:40:18 GMT expires: - '-1' odata-version: @@ -22128,17 +21973,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22146,7 +21991,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:28 GMT + - Wed, 13 Jan 2021 01:40:20 GMT expires: - '-1' odata-version: @@ -22181,17 +22026,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22199,7 +22044,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:30 GMT + - Wed, 13 Jan 2021 01:40:22 GMT expires: - '-1' odata-version: @@ -22234,17 +22079,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22252,7 +22097,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:32 GMT + - Wed, 13 Jan 2021 01:40:24 GMT expires: - '-1' odata-version: @@ -22287,17 +22132,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22305,7 +22150,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:35 GMT + - Wed, 13 Jan 2021 01:40:27 GMT expires: - '-1' odata-version: @@ -22340,17 +22185,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22358,7 +22203,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:37 GMT + - Wed, 13 Jan 2021 01:40:29 GMT expires: - '-1' odata-version: @@ -22393,17 +22238,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22411,7 +22256,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:39 GMT + - Wed, 13 Jan 2021 01:40:31 GMT expires: - '-1' odata-version: @@ -22446,17 +22291,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22464,7 +22309,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:41 GMT + - Wed, 13 Jan 2021 01:40:34 GMT expires: - '-1' odata-version: @@ -22499,17 +22344,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22517,7 +22362,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:44 GMT + - Wed, 13 Jan 2021 01:40:36 GMT expires: - '-1' odata-version: @@ -22552,17 +22397,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22570,7 +22415,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:46 GMT + - Wed, 13 Jan 2021 01:40:38 GMT expires: - '-1' odata-version: @@ -22605,17 +22450,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22623,7 +22468,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:48 GMT + - Wed, 13 Jan 2021 01:40:40 GMT expires: - '-1' odata-version: @@ -22658,17 +22503,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22676,7 +22521,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:51 GMT + - Wed, 13 Jan 2021 01:40:43 GMT expires: - '-1' odata-version: @@ -22711,17 +22556,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22729,7 +22574,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:53 GMT + - Wed, 13 Jan 2021 01:40:45 GMT expires: - '-1' odata-version: @@ -22764,17 +22609,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22782,7 +22627,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:55 GMT + - Wed, 13 Jan 2021 01:40:47 GMT expires: - '-1' odata-version: @@ -22817,17 +22662,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22835,7 +22680,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:58 GMT + - Wed, 13 Jan 2021 01:40:50 GMT expires: - '-1' odata-version: @@ -22870,17 +22715,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22888,7 +22733,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:00 GMT + - Wed, 13 Jan 2021 01:40:52 GMT expires: - '-1' odata-version: @@ -22923,17 +22768,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22941,7 +22786,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:02 GMT + - Wed, 13 Jan 2021 01:40:55 GMT expires: - '-1' odata-version: @@ -22976,17 +22821,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22994,7 +22839,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:04 GMT + - Wed, 13 Jan 2021 01:40:57 GMT expires: - '-1' odata-version: @@ -23029,17 +22874,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23047,7 +22892,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:07 GMT + - Wed, 13 Jan 2021 01:41:00 GMT expires: - '-1' odata-version: @@ -23082,17 +22927,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23100,7 +22945,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:10 GMT + - Wed, 13 Jan 2021 01:41:02 GMT expires: - '-1' odata-version: @@ -23135,17 +22980,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23153,7 +22998,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:12 GMT + - Wed, 13 Jan 2021 01:41:04 GMT expires: - '-1' odata-version: @@ -23188,17 +23033,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23206,7 +23051,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:15 GMT + - Wed, 13 Jan 2021 01:41:06 GMT expires: - '-1' odata-version: @@ -23241,17 +23086,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23259,7 +23104,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:17 GMT + - Wed, 13 Jan 2021 01:41:09 GMT expires: - '-1' odata-version: @@ -23294,17 +23139,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23312,7 +23157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:19 GMT + - Wed, 13 Jan 2021 01:41:11 GMT expires: - '-1' odata-version: @@ -23347,17 +23192,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23365,7 +23210,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:21 GMT + - Wed, 13 Jan 2021 01:41:13 GMT expires: - '-1' odata-version: @@ -23400,17 +23245,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23418,7 +23263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:24 GMT + - Wed, 13 Jan 2021 01:41:15 GMT expires: - '-1' odata-version: @@ -23453,17 +23298,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23471,7 +23316,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:26 GMT + - Wed, 13 Jan 2021 01:41:18 GMT expires: - '-1' odata-version: @@ -23506,17 +23351,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23524,7 +23369,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:28 GMT + - Wed, 13 Jan 2021 01:41:20 GMT expires: - '-1' odata-version: @@ -23559,17 +23404,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23577,7 +23422,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:31 GMT + - Wed, 13 Jan 2021 01:41:22 GMT expires: - '-1' odata-version: @@ -23612,17 +23457,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23630,7 +23475,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:33 GMT + - Wed, 13 Jan 2021 01:41:25 GMT expires: - '-1' odata-version: @@ -23665,17 +23510,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23683,7 +23528,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:35 GMT + - Wed, 13 Jan 2021 01:41:27 GMT expires: - '-1' odata-version: @@ -23718,17 +23563,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23736,7 +23581,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:37 GMT + - Wed, 13 Jan 2021 01:41:29 GMT expires: - '-1' odata-version: @@ -23771,17 +23616,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23789,7 +23634,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:40 GMT + - Wed, 13 Jan 2021 01:41:31 GMT expires: - '-1' odata-version: @@ -23824,17 +23669,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23842,7 +23687,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:42 GMT + - Wed, 13 Jan 2021 01:41:34 GMT expires: - '-1' odata-version: @@ -23877,17 +23722,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23895,7 +23740,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:44 GMT + - Wed, 13 Jan 2021 01:41:36 GMT expires: - '-1' odata-version: @@ -23930,17 +23775,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23948,7 +23793,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:47 GMT + - Wed, 13 Jan 2021 01:41:38 GMT expires: - '-1' odata-version: @@ -23983,17 +23828,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24001,7 +23846,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:49 GMT + - Wed, 13 Jan 2021 01:41:41 GMT expires: - '-1' odata-version: @@ -24036,17 +23881,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24054,7 +23899,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:51 GMT + - Wed, 13 Jan 2021 01:41:43 GMT expires: - '-1' odata-version: @@ -24089,17 +23934,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24107,7 +23952,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:53 GMT + - Wed, 13 Jan 2021 01:41:45 GMT expires: - '-1' odata-version: @@ -24142,17 +23987,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24160,7 +24005,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:56 GMT + - Wed, 13 Jan 2021 01:41:47 GMT expires: - '-1' odata-version: @@ -24195,17 +24040,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24213,7 +24058,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:58 GMT + - Wed, 13 Jan 2021 01:41:50 GMT expires: - '-1' odata-version: @@ -24248,17 +24093,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24266,7 +24111,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:00 GMT + - Wed, 13 Jan 2021 01:41:52 GMT expires: - '-1' odata-version: @@ -24301,17 +24146,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24319,7 +24164,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:03 GMT + - Wed, 13 Jan 2021 01:41:54 GMT expires: - '-1' odata-version: @@ -24354,17 +24199,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24372,7 +24217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:05 GMT + - Wed, 13 Jan 2021 01:41:57 GMT expires: - '-1' odata-version: @@ -24407,17 +24252,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24425,7 +24270,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:07 GMT + - Wed, 13 Jan 2021 01:41:59 GMT expires: - '-1' odata-version: @@ -24460,16 +24305,16 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2020-09-25T21:44:25.8183925Z\",\"lastModified\":\"2020-09-25T21:44:25.8183925Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:29.0672811Z\",\"lastModified\":\"2021-01-13T01:41:58.4501192Z\"\r\n \ }\r\n}" headers: cache-control: @@ -24479,7 +24324,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:10 GMT + - Wed, 13 Jan 2021 01:42:01 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml index 00e8df5a3d1..e31b4ef95e8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "centralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"007ebbfa-b9c7-4492-9012-1f7634a7ef7d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"e2ab35b9-b946-43b5-9bb6-c23390a07dd7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:27 GMT + - Wed, 13 Jan 2021 01:24:21 GMT expires: - '-1' odata-version: @@ -71,26 +73,28 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"007ebbfa-b9c7-4492-9012-1f7634a7ef7d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"e2ab35b9-b946-43b5-9bb6-c23390a07dd7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:27 GMT + - Wed, 13 Jan 2021 01:24:21 GMT expires: - '-1' odata-version: @@ -130,22 +134,22 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:29.0947222Z\",\"lastModified\":\"2020-09-25T21:44:29.0947222Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:23.6883364Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a8a226ca-39cb-4c67-9424-a7b42db09134?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -153,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:29 GMT + - Wed, 13 Jan 2021 01:24:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a8a226ca-39cb-4c67-9424-a7b42db09134?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -169,10 +173,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1197' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -188,17 +192,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a8a226ca-39cb-4c67-9424-a7b42db09134?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a8a226ca-39cb-4c67-9424-a7b42db09134\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c247b7b0-8e11-486c-9289-9dc5f7e5419d\"\r\n + string: "{\r\n \"name\":\"67c3449b-9892-4ec1-9afb-54edae871232\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"8c6be7cc-3b3c-4e38-a33c-1dcd23b55e63\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a8a226ca-39cb-4c67-9424-a7b42db09134?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,11 +210,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:31 GMT + - Wed, 13 Jan 2021 01:24:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/a8a226ca-39cb-4c67-9424-a7b42db09134?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -243,14 +245,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:29.0947222Z\",\"lastModified\":\"2020-09-25T21:44:29.8184755Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:25.1600356Z\"\r\n \ }\r\n}" headers: cache-control: @@ -260,7 +262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:31 GMT + - Wed, 13 Jan 2021 01:24:26 GMT expires: - '-1' odata-version: @@ -297,27 +299,27 @@ interactions: - -g -a -n --no-wait User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/start?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/start?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0d743f2c-3dfb-488f-bfc7-b3fd84d8d216?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/9e14e8aa-be2b-460b-98a3-af7884150e26?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:32 GMT + - Wed, 13 Jan 2021 01:24:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0d743f2c-3dfb-488f-bfc7-b3fd84d8d216?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/9e14e8aa-be2b-460b-98a3-af7884150e26?api-version=2020-05-01 pragma: - no-cache server: @@ -346,26 +348,26 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Starting\",\"created\":\"2020-09-25T21:44:29.0947222Z\",\"lastModified\":\"2020-09-25T21:44:33.046888Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Starting\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:27.6606954Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '869' + - '870' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:33 GMT + - Wed, 13 Jan 2021 01:24:27 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml index bdc463accc0..9cf13fd3ea6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"87a5615f-1eba-4c29-8747-9f4b324f81ea\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"552fba7e-fcf4-4ebb-9d66-53ffc9d59fbd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:42 GMT + - Wed, 13 Jan 2021 01:24:23 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"87a5615f-1eba-4c29-8747-9f4b324f81ea\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"552fba7e-fcf4-4ebb-9d66-53ffc9d59fbd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:43 GMT + - Wed, 13 Jan 2021 01:24:24 GMT expires: - '-1' odata-version: @@ -130,22 +134,22 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:45.2743654Z\",\"lastModified\":\"2020-09-25T21:44:45.2743654Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:26.0051289Z\",\"lastModified\":\"2021-01-13T01:24:26.0051289Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -153,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:45 GMT + - Wed, 13 Jan 2021 01:24:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -169,10 +173,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -188,17 +192,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,11 +210,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:48 GMT + - Wed, 13 Jan 2021 01:24:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -243,17 +245,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -261,11 +263,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:50 GMT + - Wed, 13 Jan 2021 01:24:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -298,17 +298,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -316,11 +316,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:52 GMT + - Wed, 13 Jan 2021 01:24:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -353,17 +351,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -371,11 +369,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:54 GMT + - Wed, 13 Jan 2021 01:24:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -408,17 +404,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -426,11 +422,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Wed, 13 Jan 2021 01:24:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -463,17 +457,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -481,11 +475,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:58 GMT + - Wed, 13 Jan 2021 01:24:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -518,17 +510,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -536,11 +528,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:00 GMT + - Wed, 13 Jan 2021 01:24:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -573,17 +563,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -591,11 +581,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:02 GMT + - Wed, 13 Jan 2021 01:24:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -628,17 +616,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -646,11 +634,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:04 GMT + - Wed, 13 Jan 2021 01:24:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -683,17 +669,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -701,11 +687,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:07 GMT + - Wed, 13 Jan 2021 01:24:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -738,17 +722,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -756,11 +740,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:09 GMT + - Wed, 13 Jan 2021 01:24:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -793,17 +775,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -811,11 +793,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:11 GMT + - Wed, 13 Jan 2021 01:24:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -848,17 +828,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -866,11 +846,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:13 GMT + - Wed, 13 Jan 2021 01:24:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -903,17 +881,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -921,11 +899,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:15 GMT + - Wed, 13 Jan 2021 01:24:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -958,17 +934,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -976,11 +952,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:17 GMT + - Wed, 13 Jan 2021 01:24:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1013,17 +987,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1031,11 +1005,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:19 GMT + - Wed, 13 Jan 2021 01:25:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1068,17 +1040,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1086,11 +1058,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:21 GMT + - Wed, 13 Jan 2021 01:25:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1123,17 +1093,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1141,11 +1111,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:24 GMT + - Wed, 13 Jan 2021 01:25:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1178,17 +1146,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1196,11 +1164,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:26 GMT + - Wed, 13 Jan 2021 01:25:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1233,17 +1199,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1251,11 +1217,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:28 GMT + - Wed, 13 Jan 2021 01:25:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1288,17 +1252,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1306,11 +1270,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:30 GMT + - Wed, 13 Jan 2021 01:25:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1343,17 +1305,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1361,11 +1323,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:32 GMT + - Wed, 13 Jan 2021 01:25:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1398,17 +1358,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1416,11 +1376,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:34 GMT + - Wed, 13 Jan 2021 01:25:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1453,17 +1411,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1471,11 +1429,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:36 GMT + - Wed, 13 Jan 2021 01:25:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1508,17 +1464,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1526,11 +1482,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:38 GMT + - Wed, 13 Jan 2021 01:25:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1563,17 +1517,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1581,11 +1535,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:40 GMT + - Wed, 13 Jan 2021 01:25:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1618,17 +1570,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1636,11 +1588,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:43 GMT + - Wed, 13 Jan 2021 01:25:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1673,17 +1623,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1691,11 +1641,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:45 GMT + - Wed, 13 Jan 2021 01:25:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1728,17 +1676,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1746,11 +1694,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:47 GMT + - Wed, 13 Jan 2021 01:25:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1783,17 +1729,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1801,11 +1747,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:49 GMT + - Wed, 13 Jan 2021 01:25:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1838,17 +1782,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1856,11 +1800,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:51 GMT + - Wed, 13 Jan 2021 01:25:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1893,17 +1835,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1911,11 +1853,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:53 GMT + - Wed, 13 Jan 2021 01:25:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -1948,17 +1888,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1966,11 +1906,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:55 GMT + - Wed, 13 Jan 2021 01:25:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2003,17 +1941,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2021,11 +1959,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:57 GMT + - Wed, 13 Jan 2021 01:25:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2058,17 +1994,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2076,11 +2012,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:00 GMT + - Wed, 13 Jan 2021 01:25:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2113,17 +2047,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2131,11 +2065,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:02 GMT + - Wed, 13 Jan 2021 01:25:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2168,17 +2100,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2186,11 +2118,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:04 GMT + - Wed, 13 Jan 2021 01:25:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2223,17 +2153,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2241,11 +2171,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:06 GMT + - Wed, 13 Jan 2021 01:25:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2278,17 +2206,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2296,11 +2224,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:08 GMT + - Wed, 13 Jan 2021 01:25:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2333,17 +2259,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2351,11 +2277,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:10 GMT + - Wed, 13 Jan 2021 01:25:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2388,17 +2312,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2406,11 +2330,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:13 GMT + - Wed, 13 Jan 2021 01:25:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2443,17 +2365,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2461,11 +2383,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:15 GMT + - Wed, 13 Jan 2021 01:25:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2498,17 +2418,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2516,11 +2436,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:17 GMT + - Wed, 13 Jan 2021 01:25:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2553,17 +2471,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2571,11 +2489,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:19 GMT + - Wed, 13 Jan 2021 01:26:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2608,17 +2524,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2626,11 +2542,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:21 GMT + - Wed, 13 Jan 2021 01:26:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2663,17 +2577,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2681,11 +2595,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:23 GMT + - Wed, 13 Jan 2021 01:26:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2718,17 +2630,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2736,11 +2648,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:25 GMT + - Wed, 13 Jan 2021 01:26:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2773,17 +2683,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2791,11 +2701,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Wed, 13 Jan 2021 01:26:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2828,17 +2736,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2846,11 +2754,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:30 GMT + - Wed, 13 Jan 2021 01:26:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2883,17 +2789,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2901,11 +2807,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:32 GMT + - Wed, 13 Jan 2021 01:26:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2938,17 +2842,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2956,11 +2860,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:34 GMT + - Wed, 13 Jan 2021 01:26:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -2993,17 +2895,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3011,11 +2913,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:36 GMT + - Wed, 13 Jan 2021 01:26:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3048,17 +2948,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3066,11 +2966,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:38 GMT + - Wed, 13 Jan 2021 01:26:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3103,17 +3001,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3121,11 +3019,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:40 GMT + - Wed, 13 Jan 2021 01:26:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3158,17 +3054,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3176,11 +3072,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:42 GMT + - Wed, 13 Jan 2021 01:26:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3213,17 +3107,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3231,11 +3125,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:45 GMT + - Wed, 13 Jan 2021 01:26:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3268,17 +3160,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3286,11 +3178,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:47 GMT + - Wed, 13 Jan 2021 01:26:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3323,17 +3213,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3341,11 +3231,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:49 GMT + - Wed, 13 Jan 2021 01:26:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3378,17 +3266,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3396,11 +3284,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:51 GMT + - Wed, 13 Jan 2021 01:26:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3433,17 +3319,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3451,11 +3337,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:53 GMT + - Wed, 13 Jan 2021 01:26:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3488,17 +3372,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3506,11 +3390,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:55 GMT + - Wed, 13 Jan 2021 01:26:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3543,17 +3425,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3561,11 +3443,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:57 GMT + - Wed, 13 Jan 2021 01:26:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3598,17 +3478,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3616,11 +3496,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:59 GMT + - Wed, 13 Jan 2021 01:26:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3653,17 +3531,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3671,11 +3549,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:02 GMT + - Wed, 13 Jan 2021 01:26:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3708,17 +3584,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3726,11 +3602,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:04 GMT + - Wed, 13 Jan 2021 01:26:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3763,17 +3637,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3781,11 +3655,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:07 GMT + - Wed, 13 Jan 2021 01:26:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3818,17 +3690,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3836,11 +3708,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:09 GMT + - Wed, 13 Jan 2021 01:26:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3873,17 +3743,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3891,11 +3761,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:11 GMT + - Wed, 13 Jan 2021 01:26:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3928,17 +3796,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3946,11 +3814,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Wed, 13 Jan 2021 01:26:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -3983,17 +3849,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4001,11 +3867,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Wed, 13 Jan 2021 01:26:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4038,17 +3902,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4056,11 +3920,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:17 GMT + - Wed, 13 Jan 2021 01:26:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4093,17 +3955,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4111,11 +3973,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:20 GMT + - Wed, 13 Jan 2021 01:26:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4148,17 +4008,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4166,11 +4026,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:22 GMT + - Wed, 13 Jan 2021 01:27:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4203,17 +4061,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4221,11 +4079,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:24 GMT + - Wed, 13 Jan 2021 01:27:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4258,17 +4114,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4276,11 +4132,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:26 GMT + - Wed, 13 Jan 2021 01:27:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4313,17 +4167,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4331,11 +4185,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:28 GMT + - Wed, 13 Jan 2021 01:27:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4368,17 +4220,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4386,11 +4238,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:30 GMT + - Wed, 13 Jan 2021 01:27:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4423,17 +4273,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4441,11 +4291,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:32 GMT + - Wed, 13 Jan 2021 01:27:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4478,17 +4326,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4496,11 +4344,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:34 GMT + - Wed, 13 Jan 2021 01:27:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4533,17 +4379,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4551,11 +4397,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:37 GMT + - Wed, 13 Jan 2021 01:27:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4588,17 +4432,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4606,11 +4450,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:39 GMT + - Wed, 13 Jan 2021 01:27:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4643,17 +4485,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4661,11 +4503,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:41 GMT + - Wed, 13 Jan 2021 01:27:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4698,17 +4538,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4716,11 +4556,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:43 GMT + - Wed, 13 Jan 2021 01:27:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4753,17 +4591,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4771,11 +4609,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:45 GMT + - Wed, 13 Jan 2021 01:27:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4808,17 +4644,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4826,11 +4662,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:47 GMT + - Wed, 13 Jan 2021 01:27:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4863,17 +4697,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4881,11 +4715,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:49 GMT + - Wed, 13 Jan 2021 01:27:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4918,17 +4750,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4936,11 +4768,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:51 GMT + - Wed, 13 Jan 2021 01:27:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -4973,17 +4803,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4991,11 +4821,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:54 GMT + - Wed, 13 Jan 2021 01:27:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5028,17 +4856,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5046,11 +4874,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:56 GMT + - Wed, 13 Jan 2021 01:27:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5083,17 +4909,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5101,11 +4927,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:58 GMT + - Wed, 13 Jan 2021 01:27:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5138,17 +4962,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5156,11 +4980,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:00 GMT + - Wed, 13 Jan 2021 01:27:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5193,17 +5015,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5211,11 +5033,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:02 GMT + - Wed, 13 Jan 2021 01:27:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5248,17 +5068,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5266,11 +5086,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:04 GMT + - Wed, 13 Jan 2021 01:27:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5303,17 +5121,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5321,11 +5139,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:06 GMT + - Wed, 13 Jan 2021 01:27:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5358,17 +5174,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5376,11 +5192,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:08 GMT + - Wed, 13 Jan 2021 01:27:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5413,17 +5227,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5431,11 +5245,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:11 GMT + - Wed, 13 Jan 2021 01:27:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5468,17 +5280,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5486,11 +5298,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:13 GMT + - Wed, 13 Jan 2021 01:27:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5523,17 +5333,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5541,11 +5351,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:15 GMT + - Wed, 13 Jan 2021 01:27:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5578,17 +5386,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5596,11 +5404,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:17 GMT + - Wed, 13 Jan 2021 01:27:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5633,17 +5439,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5651,11 +5457,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:19 GMT + - Wed, 13 Jan 2021 01:27:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5688,17 +5492,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5706,11 +5510,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:21 GMT + - Wed, 13 Jan 2021 01:28:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5743,17 +5545,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5761,11 +5563,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:23 GMT + - Wed, 13 Jan 2021 01:28:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5798,17 +5598,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5816,11 +5616,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:25 GMT + - Wed, 13 Jan 2021 01:28:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5853,17 +5651,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5871,11 +5669,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:28 GMT + - Wed, 13 Jan 2021 01:28:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5908,17 +5704,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5926,11 +5722,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:30 GMT + - Wed, 13 Jan 2021 01:28:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -5963,17 +5757,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5981,11 +5775,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:32 GMT + - Wed, 13 Jan 2021 01:28:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6018,17 +5810,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6036,11 +5828,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:34 GMT + - Wed, 13 Jan 2021 01:28:14 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6073,17 +5863,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6091,11 +5881,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:36 GMT + - Wed, 13 Jan 2021 01:28:16 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6128,17 +5916,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6146,11 +5934,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:38 GMT + - Wed, 13 Jan 2021 01:28:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6183,17 +5969,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6201,11 +5987,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:40 GMT + - Wed, 13 Jan 2021 01:28:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6238,17 +6022,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6256,11 +6040,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:43 GMT + - Wed, 13 Jan 2021 01:28:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6293,17 +6075,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6311,11 +6093,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:45 GMT + - Wed, 13 Jan 2021 01:28:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6348,17 +6128,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6366,11 +6146,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:47 GMT + - Wed, 13 Jan 2021 01:28:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6403,17 +6181,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6421,11 +6199,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:49 GMT + - Wed, 13 Jan 2021 01:28:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6458,17 +6234,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6476,11 +6252,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:51 GMT + - Wed, 13 Jan 2021 01:28:31 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6513,17 +6287,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6531,11 +6305,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:53 GMT + - Wed, 13 Jan 2021 01:28:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6568,17 +6340,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6586,11 +6358,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:55 GMT + - Wed, 13 Jan 2021 01:28:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6623,17 +6393,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6641,11 +6411,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:57 GMT + - Wed, 13 Jan 2021 01:28:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6678,17 +6446,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6696,11 +6464,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:59 GMT + - Wed, 13 Jan 2021 01:28:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6733,17 +6499,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6751,11 +6517,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:02 GMT + - Wed, 13 Jan 2021 01:28:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6788,17 +6552,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6806,11 +6570,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:04 GMT + - Wed, 13 Jan 2021 01:28:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6843,17 +6605,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6861,11 +6623,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:06 GMT + - Wed, 13 Jan 2021 01:28:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6898,17 +6658,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6916,11 +6676,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:08 GMT + - Wed, 13 Jan 2021 01:28:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -6953,17 +6711,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6971,11 +6729,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:10 GMT + - Wed, 13 Jan 2021 01:28:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7008,17 +6764,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7026,11 +6782,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:12 GMT + - Wed, 13 Jan 2021 01:28:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7063,17 +6817,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7081,11 +6835,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:14 GMT + - Wed, 13 Jan 2021 01:28:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7118,17 +6870,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7136,11 +6888,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:16 GMT + - Wed, 13 Jan 2021 01:28:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7173,17 +6923,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7191,11 +6941,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:19 GMT + - Wed, 13 Jan 2021 01:28:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7228,17 +6976,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7246,11 +6994,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:21 GMT + - Wed, 13 Jan 2021 01:29:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7283,17 +7029,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7301,11 +7047,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:23 GMT + - Wed, 13 Jan 2021 01:29:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7338,17 +7082,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7356,11 +7100,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:25 GMT + - Wed, 13 Jan 2021 01:29:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7393,17 +7135,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7411,11 +7153,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:27 GMT + - Wed, 13 Jan 2021 01:29:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7448,17 +7188,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7466,11 +7206,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:29 GMT + - Wed, 13 Jan 2021 01:29:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7503,17 +7241,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7521,11 +7259,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:31 GMT + - Wed, 13 Jan 2021 01:29:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7558,17 +7294,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7576,11 +7312,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:33 GMT + - Wed, 13 Jan 2021 01:29:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7613,17 +7347,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7631,11 +7365,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:36 GMT + - Wed, 13 Jan 2021 01:29:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7668,17 +7400,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7686,11 +7418,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:38 GMT + - Wed, 13 Jan 2021 01:29:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7723,17 +7453,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7741,11 +7471,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:40 GMT + - Wed, 13 Jan 2021 01:29:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7778,17 +7506,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7796,11 +7524,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:42 GMT + - Wed, 13 Jan 2021 01:29:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7833,17 +7559,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7851,11 +7577,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:44 GMT + - Wed, 13 Jan 2021 01:29:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7888,17 +7612,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7906,11 +7630,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:46 GMT + - Wed, 13 Jan 2021 01:29:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7943,17 +7665,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7961,11 +7683,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:48 GMT + - Wed, 13 Jan 2021 01:29:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -7998,17 +7718,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8016,11 +7736,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:51 GMT + - Wed, 13 Jan 2021 01:29:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8053,17 +7771,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8071,11 +7789,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:53 GMT + - Wed, 13 Jan 2021 01:29:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8108,17 +7824,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8126,11 +7842,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:55 GMT + - Wed, 13 Jan 2021 01:29:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8163,17 +7877,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8181,11 +7895,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:57 GMT + - Wed, 13 Jan 2021 01:29:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8218,17 +7930,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8236,11 +7948,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:59 GMT + - Wed, 13 Jan 2021 01:29:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8273,17 +7983,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8291,11 +8001,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:01 GMT + - Wed, 13 Jan 2021 01:29:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8328,17 +8036,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8346,11 +8054,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:03 GMT + - Wed, 13 Jan 2021 01:29:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8383,17 +8089,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8401,11 +8107,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:05 GMT + - Wed, 13 Jan 2021 01:29:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8438,17 +8142,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8456,11 +8160,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:08 GMT + - Wed, 13 Jan 2021 01:29:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8493,17 +8195,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8511,11 +8213,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:10 GMT + - Wed, 13 Jan 2021 01:29:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8548,17 +8248,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8566,11 +8266,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:12 GMT + - Wed, 13 Jan 2021 01:29:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8603,17 +8301,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8621,11 +8319,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:14 GMT + - Wed, 13 Jan 2021 01:29:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8658,17 +8354,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8676,11 +8372,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:16 GMT + - Wed, 13 Jan 2021 01:29:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8713,17 +8407,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8731,11 +8425,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:18 GMT + - Wed, 13 Jan 2021 01:30:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8768,17 +8460,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8786,11 +8478,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:20 GMT + - Wed, 13 Jan 2021 01:30:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8823,17 +8513,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8841,11 +8531,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:22 GMT + - Wed, 13 Jan 2021 01:30:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8878,17 +8566,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8896,11 +8584,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:25 GMT + - Wed, 13 Jan 2021 01:30:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8933,17 +8619,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8951,11 +8637,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:27 GMT + - Wed, 13 Jan 2021 01:30:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -8988,17 +8672,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9006,11 +8690,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:29 GMT + - Wed, 13 Jan 2021 01:30:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9043,17 +8725,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9061,11 +8743,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:31 GMT + - Wed, 13 Jan 2021 01:30:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9098,17 +8778,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9116,11 +8796,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:33 GMT + - Wed, 13 Jan 2021 01:30:14 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9153,17 +8831,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9171,11 +8849,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:35 GMT + - Wed, 13 Jan 2021 01:30:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9208,17 +8884,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9226,11 +8902,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:37 GMT + - Wed, 13 Jan 2021 01:30:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9263,17 +8937,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9281,11 +8955,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:40 GMT + - Wed, 13 Jan 2021 01:30:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9318,17 +8990,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9336,11 +9008,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:42 GMT + - Wed, 13 Jan 2021 01:30:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9373,17 +9043,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9391,11 +9061,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:44 GMT + - Wed, 13 Jan 2021 01:30:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9428,17 +9096,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9446,11 +9114,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:46 GMT + - Wed, 13 Jan 2021 01:30:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9483,17 +9149,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9501,11 +9167,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:48 GMT + - Wed, 13 Jan 2021 01:30:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9538,17 +9202,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9556,11 +9220,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:50 GMT + - Wed, 13 Jan 2021 01:30:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9593,17 +9255,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9611,11 +9273,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:53 GMT + - Wed, 13 Jan 2021 01:30:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9648,17 +9308,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9666,11 +9326,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:55 GMT + - Wed, 13 Jan 2021 01:30:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9703,17 +9361,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9721,11 +9379,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:57 GMT + - Wed, 13 Jan 2021 01:30:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9758,17 +9414,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9776,11 +9432,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:59 GMT + - Wed, 13 Jan 2021 01:30:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9813,17 +9467,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9831,11 +9485,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:01 GMT + - Wed, 13 Jan 2021 01:30:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9868,17 +9520,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9886,11 +9538,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:03 GMT + - Wed, 13 Jan 2021 01:30:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9923,17 +9573,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9941,11 +9591,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:07 GMT + - Wed, 13 Jan 2021 01:30:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -9978,17 +9626,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9996,11 +9644,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:09 GMT + - Wed, 13 Jan 2021 01:30:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10033,17 +9679,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10051,11 +9697,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:11 GMT + - Wed, 13 Jan 2021 01:30:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10088,17 +9732,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10106,11 +9750,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:13 GMT + - Wed, 13 Jan 2021 01:30:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10143,17 +9785,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10161,11 +9803,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:15 GMT + - Wed, 13 Jan 2021 01:30:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10198,17 +9838,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10216,11 +9856,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:17 GMT + - Wed, 13 Jan 2021 01:30:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10253,17 +9891,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10271,11 +9909,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:19 GMT + - Wed, 13 Jan 2021 01:31:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10308,17 +9944,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10326,11 +9962,5733 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:21 GMT + - Wed, 13 Jan 2021 01:31:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:19 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:21 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:27 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:31 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:33 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:36 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:38 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:40 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:31:59 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:01 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:18 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:20 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:22 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:24 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:26 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:31 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:33 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:35 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:41 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:43 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:54 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:56 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:32:58 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:11 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:13 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:15 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:17 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:19 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:27 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:31 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:33 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:35 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:33:59 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:01 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:18 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:20 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:22 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:24 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:26 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:31 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:33 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:35 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:41 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:43 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:34:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10363,17 +15721,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10381,11 +15739,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:24 GMT + - Wed, 13 Jan 2021 01:34:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10418,17 +15774,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10436,11 +15792,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:26 GMT + - Wed, 13 Jan 2021 01:34:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10473,17 +15827,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10491,11 +15845,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:28 GMT + - Wed, 13 Jan 2021 01:35:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10528,17 +15880,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10546,11 +15898,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:30 GMT + - Wed, 13 Jan 2021 01:35:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10583,17 +15933,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10601,11 +15951,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Wed, 13 Jan 2021 01:35:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10638,17 +15986,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10656,11 +16004,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Wed, 13 Jan 2021 01:35:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10693,17 +16039,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10711,11 +16057,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Wed, 13 Jan 2021 01:35:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10748,17 +16092,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10766,11 +16110,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:38 GMT + - Wed, 13 Jan 2021 01:35:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10803,17 +16145,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10821,11 +16163,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:41 GMT + - Wed, 13 Jan 2021 01:35:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10858,17 +16198,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10876,11 +16216,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:43 GMT + - Wed, 13 Jan 2021 01:35:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10913,17 +16251,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10931,11 +16269,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:45 GMT + - Wed, 13 Jan 2021 01:35:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -10968,17 +16304,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10986,11 +16322,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:47 GMT + - Wed, 13 Jan 2021 01:35:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11023,17 +16357,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11041,11 +16375,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:49 GMT + - Wed, 13 Jan 2021 01:35:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11078,17 +16410,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11096,11 +16428,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:51 GMT + - Wed, 13 Jan 2021 01:35:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11133,17 +16463,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11151,11 +16481,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:53 GMT + - Wed, 13 Jan 2021 01:35:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11188,17 +16516,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11206,11 +16534,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Wed, 13 Jan 2021 01:35:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11243,17 +16569,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11261,11 +16587,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:58 GMT + - Wed, 13 Jan 2021 01:35:31 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11298,17 +16622,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11316,11 +16640,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:00 GMT + - Wed, 13 Jan 2021 01:35:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11353,17 +16675,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11371,11 +16693,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:02 GMT + - Wed, 13 Jan 2021 01:35:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11408,17 +16728,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11426,11 +16746,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:04 GMT + - Wed, 13 Jan 2021 01:35:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11463,17 +16781,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11481,11 +16799,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Wed, 13 Jan 2021 01:35:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11518,17 +16834,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11536,11 +16852,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Wed, 13 Jan 2021 01:35:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11573,17 +16887,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11591,11 +16905,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:10 GMT + - Wed, 13 Jan 2021 01:35:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11628,17 +16940,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11646,11 +16958,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:12 GMT + - Wed, 13 Jan 2021 01:35:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11683,17 +16993,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11701,11 +17011,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:15 GMT + - Wed, 13 Jan 2021 01:35:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11738,17 +17046,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11756,11 +17064,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:17 GMT + - Wed, 13 Jan 2021 01:35:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11793,17 +17099,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11811,11 +17117,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:19 GMT + - Wed, 13 Jan 2021 01:35:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11848,17 +17152,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11866,11 +17170,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:21 GMT + - Wed, 13 Jan 2021 01:35:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11903,17 +17205,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11921,11 +17223,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:23 GMT + - Wed, 13 Jan 2021 01:35:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -11958,17 +17258,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11976,11 +17276,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Wed, 13 Jan 2021 01:35:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12013,17 +17311,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12031,11 +17329,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Wed, 13 Jan 2021 01:36:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12068,17 +17364,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12086,11 +17382,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Wed, 13 Jan 2021 01:36:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12123,17 +17417,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12141,11 +17435,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Wed, 13 Jan 2021 01:36:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12178,17 +17470,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12196,11 +17488,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:34 GMT + - Wed, 13 Jan 2021 01:36:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12233,17 +17523,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12251,11 +17541,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:36 GMT + - Wed, 13 Jan 2021 01:36:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12288,17 +17576,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12306,11 +17594,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:38 GMT + - Wed, 13 Jan 2021 01:36:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12343,17 +17629,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12361,11 +17647,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:40 GMT + - Wed, 13 Jan 2021 01:36:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12398,17 +17682,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12416,11 +17700,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:42 GMT + - Wed, 13 Jan 2021 01:36:16 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12453,17 +17735,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12471,11 +17753,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:44 GMT + - Wed, 13 Jan 2021 01:36:18 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12508,17 +17788,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12526,11 +17806,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:46 GMT + - Wed, 13 Jan 2021 01:36:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12563,17 +17841,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12581,11 +17859,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Wed, 13 Jan 2021 01:36:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12618,17 +17894,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12636,11 +17912,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:51 GMT + - Wed, 13 Jan 2021 01:36:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12673,17 +17947,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12691,11 +17965,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:53 GMT + - Wed, 13 Jan 2021 01:36:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12728,17 +18000,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12746,11 +18018,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:55 GMT + - Wed, 13 Jan 2021 01:36:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12783,17 +18053,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12801,11 +18071,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Wed, 13 Jan 2021 01:36:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12838,17 +18106,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12856,11 +18124,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:00 GMT + - Wed, 13 Jan 2021 01:36:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12893,17 +18159,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12911,11 +18177,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:02 GMT + - Wed, 13 Jan 2021 01:36:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -12948,17 +18212,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12966,11 +18230,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:05 GMT + - Wed, 13 Jan 2021 01:36:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13003,17 +18265,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13021,11 +18283,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:07 GMT + - Wed, 13 Jan 2021 01:36:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13058,17 +18318,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13076,11 +18336,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:09 GMT + - Wed, 13 Jan 2021 01:36:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13113,17 +18371,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13131,11 +18389,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Wed, 13 Jan 2021 01:36:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13168,17 +18424,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13186,11 +18442,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Wed, 13 Jan 2021 01:36:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13223,17 +18477,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13241,11 +18495,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:15 GMT + - Wed, 13 Jan 2021 01:36:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13278,17 +18530,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13296,11 +18548,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:17 GMT + - Wed, 13 Jan 2021 01:36:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13333,17 +18583,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13351,11 +18601,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:19 GMT + - Wed, 13 Jan 2021 01:36:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13388,17 +18636,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13406,11 +18654,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:21 GMT + - Wed, 13 Jan 2021 01:36:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13443,17 +18689,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13461,11 +18707,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Wed, 13 Jan 2021 01:36:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13498,17 +18742,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13516,11 +18760,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:26 GMT + - Wed, 13 Jan 2021 01:36:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13553,17 +18795,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13571,11 +18813,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:28 GMT + - Wed, 13 Jan 2021 01:37:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13608,17 +18848,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13626,11 +18866,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:30 GMT + - Wed, 13 Jan 2021 01:37:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13663,17 +18901,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13681,11 +18919,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:32 GMT + - Wed, 13 Jan 2021 01:37:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13718,17 +18954,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13736,11 +18972,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:34 GMT + - Wed, 13 Jan 2021 01:37:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13773,17 +19007,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13791,11 +19025,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:36 GMT + - Wed, 13 Jan 2021 01:37:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13828,17 +19060,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13846,11 +19078,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:39 GMT + - Wed, 13 Jan 2021 01:37:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13883,17 +19113,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13901,11 +19131,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:41 GMT + - Wed, 13 Jan 2021 01:37:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13938,17 +19166,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13956,11 +19184,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Wed, 13 Jan 2021 01:37:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -13993,17 +19219,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14011,11 +19237,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Wed, 13 Jan 2021 01:37:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14048,17 +19272,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14066,11 +19290,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Wed, 13 Jan 2021 01:37:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14103,17 +19325,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14121,11 +19343,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Wed, 13 Jan 2021 01:37:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14158,17 +19378,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14176,11 +19396,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:51 GMT + - Wed, 13 Jan 2021 01:37:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14213,17 +19431,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14231,11 +19449,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:55 GMT + - Wed, 13 Jan 2021 01:37:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14268,17 +19484,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14286,11 +19502,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:57 GMT + - Wed, 13 Jan 2021 01:37:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14323,17 +19537,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14341,11 +19555,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:59 GMT + - Wed, 13 Jan 2021 01:37:31 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14378,17 +19590,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14396,11 +19608,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:01 GMT + - Wed, 13 Jan 2021 01:37:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14433,17 +19643,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14451,11 +19661,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:03 GMT + - Wed, 13 Jan 2021 01:37:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14488,17 +19696,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14506,11 +19714,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:05 GMT + - Wed, 13 Jan 2021 01:37:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14543,17 +19749,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14561,11 +19767,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:07 GMT + - Wed, 13 Jan 2021 01:37:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14598,17 +19802,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14616,11 +19820,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:09 GMT + - Wed, 13 Jan 2021 01:37:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14653,17 +19855,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14671,11 +19873,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:12 GMT + - Wed, 13 Jan 2021 01:37:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14708,17 +19908,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14726,11 +19926,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:14 GMT + - Wed, 13 Jan 2021 01:37:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14763,17 +19961,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14781,11 +19979,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:16 GMT + - Wed, 13 Jan 2021 01:37:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14818,17 +20014,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14836,11 +20032,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:18 GMT + - Wed, 13 Jan 2021 01:37:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14873,17 +20067,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14891,11 +20085,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:20 GMT + - Wed, 13 Jan 2021 01:37:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14928,17 +20120,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14946,11 +20138,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:22 GMT + - Wed, 13 Jan 2021 01:37:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -14983,17 +20173,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15001,11 +20191,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:24 GMT + - Wed, 13 Jan 2021 01:37:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15038,17 +20226,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15056,11 +20244,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:26 GMT + - Wed, 13 Jan 2021 01:37:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15093,17 +20279,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15111,11 +20297,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Wed, 13 Jan 2021 01:38:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15148,17 +20332,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15166,11 +20350,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:31 GMT + - Wed, 13 Jan 2021 01:38:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15203,17 +20385,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15221,11 +20403,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:33 GMT + - Wed, 13 Jan 2021 01:38:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15258,17 +20438,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15276,11 +20456,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:35 GMT + - Wed, 13 Jan 2021 01:38:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15313,17 +20491,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15331,11 +20509,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:37 GMT + - Wed, 13 Jan 2021 01:38:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15368,17 +20544,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15386,11 +20562,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:39 GMT + - Wed, 13 Jan 2021 01:38:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15423,17 +20597,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15441,11 +20615,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:41 GMT + - Wed, 13 Jan 2021 01:38:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15478,17 +20650,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15496,11 +20668,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:43 GMT + - Wed, 13 Jan 2021 01:38:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15533,17 +20703,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15551,11 +20721,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:46 GMT + - Wed, 13 Jan 2021 01:38:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15588,17 +20756,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15606,11 +20774,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:48 GMT + - Wed, 13 Jan 2021 01:38:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15643,17 +20809,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15661,11 +20827,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:50 GMT + - Wed, 13 Jan 2021 01:38:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15698,17 +20862,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15716,11 +20880,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:52 GMT + - Wed, 13 Jan 2021 01:38:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15753,17 +20915,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15771,11 +20933,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:54 GMT + - Wed, 13 Jan 2021 01:38:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15808,17 +20968,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15826,11 +20986,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:56 GMT + - Wed, 13 Jan 2021 01:38:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15863,17 +21021,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15881,11 +21039,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:58 GMT + - Wed, 13 Jan 2021 01:38:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15918,17 +21074,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15936,11 +21092,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:00 GMT + - Wed, 13 Jan 2021 01:38:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -15973,17 +21127,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15991,11 +21145,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:02 GMT + - Wed, 13 Jan 2021 01:38:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16028,17 +21180,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16046,11 +21198,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:05 GMT + - Wed, 13 Jan 2021 01:38:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16083,17 +21233,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16101,11 +21251,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:07 GMT + - Wed, 13 Jan 2021 01:38:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16138,17 +21286,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16156,11 +21304,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:09 GMT + - Wed, 13 Jan 2021 01:38:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16193,17 +21339,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16211,11 +21357,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:11 GMT + - Wed, 13 Jan 2021 01:38:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16248,17 +21392,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16266,11 +21410,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:13 GMT + - Wed, 13 Jan 2021 01:38:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16303,17 +21445,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16321,11 +21463,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:15 GMT + - Wed, 13 Jan 2021 01:38:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16358,17 +21498,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16376,11 +21516,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:17 GMT + - Wed, 13 Jan 2021 01:38:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16413,17 +21551,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16431,11 +21569,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:19 GMT + - Wed, 13 Jan 2021 01:38:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16468,17 +21604,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16486,11 +21622,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:22 GMT + - Wed, 13 Jan 2021 01:38:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16523,17 +21657,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16541,11 +21675,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:24 GMT + - Wed, 13 Jan 2021 01:38:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16578,17 +21710,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16596,11 +21728,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:26 GMT + - Wed, 13 Jan 2021 01:38:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16633,17 +21763,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16651,11 +21781,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:28 GMT + - Wed, 13 Jan 2021 01:39:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16688,17 +21816,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16706,11 +21834,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:30 GMT + - Wed, 13 Jan 2021 01:39:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16743,17 +21869,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16761,11 +21887,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Wed, 13 Jan 2021 01:39:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16798,17 +21922,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16816,11 +21940,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:34 GMT + - Wed, 13 Jan 2021 01:39:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16853,17 +21975,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16871,11 +21993,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:36 GMT + - Wed, 13 Jan 2021 01:39:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16908,17 +22028,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16926,11 +22046,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:39 GMT + - Wed, 13 Jan 2021 01:39:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -16963,17 +22081,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16981,11 +22099,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Wed, 13 Jan 2021 01:39:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17018,17 +22134,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17036,11 +22152,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:43 GMT + - Wed, 13 Jan 2021 01:39:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17073,17 +22187,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17091,11 +22205,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:45 GMT + - Wed, 13 Jan 2021 01:39:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17128,17 +22240,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17146,11 +22258,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:47 GMT + - Wed, 13 Jan 2021 01:39:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17183,17 +22293,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17201,11 +22311,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:49 GMT + - Wed, 13 Jan 2021 01:39:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17238,17 +22346,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17256,11 +22364,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Wed, 13 Jan 2021 01:39:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17293,17 +22399,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17311,11 +22417,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Wed, 13 Jan 2021 01:39:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17348,17 +22452,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17366,11 +22470,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:56 GMT + - Wed, 13 Jan 2021 01:39:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17403,17 +22505,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17421,11 +22523,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:58 GMT + - Wed, 13 Jan 2021 01:39:31 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17458,17 +22558,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17476,11 +22576,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Wed, 13 Jan 2021 01:39:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17513,17 +22611,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17531,11 +22629,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Wed, 13 Jan 2021 01:39:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17568,17 +22664,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17586,11 +22682,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Wed, 13 Jan 2021 01:39:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17623,17 +22717,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17641,11 +22735,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:06 GMT + - Wed, 13 Jan 2021 01:39:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17678,17 +22770,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17696,11 +22788,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:08 GMT + - Wed, 13 Jan 2021 01:39:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17733,17 +22823,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17751,11 +22841,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:10 GMT + - Wed, 13 Jan 2021 01:39:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17788,17 +22876,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17806,11 +22894,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:12 GMT + - Wed, 13 Jan 2021 01:39:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17843,17 +22929,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17861,11 +22947,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:15 GMT + - Wed, 13 Jan 2021 01:39:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17898,17 +22982,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17916,11 +23000,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:17 GMT + - Wed, 13 Jan 2021 01:39:50 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -17953,17 +23035,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17971,11 +23053,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:19 GMT + - Wed, 13 Jan 2021 01:39:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18008,17 +23088,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18026,11 +23106,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:21 GMT + - Wed, 13 Jan 2021 01:39:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18063,17 +23141,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18081,11 +23159,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Wed, 13 Jan 2021 01:39:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18118,17 +23194,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18136,11 +23212,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Wed, 13 Jan 2021 01:39:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18173,17 +23247,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18191,11 +23265,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Wed, 13 Jan 2021 01:40:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18228,17 +23300,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18246,11 +23318,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Wed, 13 Jan 2021 01:40:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18283,17 +23353,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18301,11 +23371,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:32 GMT + - Wed, 13 Jan 2021 01:40:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18338,17 +23406,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18356,11 +23424,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Wed, 13 Jan 2021 01:40:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18393,17 +23459,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18411,11 +23477,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Wed, 13 Jan 2021 01:40:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18448,17 +23512,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18466,11 +23530,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:39 GMT + - Wed, 13 Jan 2021 01:40:11 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18503,17 +23565,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18521,11 +23583,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:41 GMT + - Wed, 13 Jan 2021 01:40:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18558,17 +23618,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18576,11 +23636,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:43 GMT + - Wed, 13 Jan 2021 01:40:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18613,17 +23671,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18631,11 +23689,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:45 GMT + - Wed, 13 Jan 2021 01:40:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18668,17 +23724,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18686,11 +23742,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:47 GMT + - Wed, 13 Jan 2021 01:40:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18723,17 +23777,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18741,11 +23795,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:50 GMT + - Wed, 13 Jan 2021 01:40:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18778,17 +23830,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18796,11 +23848,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:52 GMT + - Wed, 13 Jan 2021 01:40:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18833,17 +23883,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18851,11 +23901,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:54 GMT + - Wed, 13 Jan 2021 01:40:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18888,17 +23936,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18906,11 +23954,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:56 GMT + - Wed, 13 Jan 2021 01:40:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18943,17 +23989,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18961,11 +24007,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:58 GMT + - Wed, 13 Jan 2021 01:40:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -18998,17 +24042,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19016,11 +24060,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:00 GMT + - Wed, 13 Jan 2021 01:40:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19053,17 +24095,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19071,11 +24113,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:03 GMT + - Wed, 13 Jan 2021 01:40:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19108,17 +24148,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19126,11 +24166,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:05 GMT + - Wed, 13 Jan 2021 01:40:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19163,17 +24201,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19181,11 +24219,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:07 GMT + - Wed, 13 Jan 2021 01:40:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19218,17 +24254,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19236,11 +24272,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:09 GMT + - Wed, 13 Jan 2021 01:40:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19273,17 +24307,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19291,11 +24325,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:11 GMT + - Wed, 13 Jan 2021 01:40:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19328,17 +24360,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19346,11 +24378,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:13 GMT + - Wed, 13 Jan 2021 01:40:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19383,17 +24413,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19401,11 +24431,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:15 GMT + - Wed, 13 Jan 2021 01:40:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19438,17 +24466,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19456,11 +24484,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Wed, 13 Jan 2021 01:40:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19493,17 +24519,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19511,11 +24537,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Wed, 13 Jan 2021 01:40:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19548,17 +24572,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19566,11 +24590,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:22 GMT + - Wed, 13 Jan 2021 01:40:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19603,17 +24625,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19621,11 +24643,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:24 GMT + - Wed, 13 Jan 2021 01:40:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19658,17 +24678,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19676,11 +24696,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:26 GMT + - Wed, 13 Jan 2021 01:40:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19713,17 +24731,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19731,11 +24749,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:28 GMT + - Wed, 13 Jan 2021 01:40:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19768,17 +24784,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19786,11 +24802,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:30 GMT + - Wed, 13 Jan 2021 01:41:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19823,17 +24837,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19841,11 +24855,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:32 GMT + - Wed, 13 Jan 2021 01:41:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19878,17 +24890,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19896,11 +24908,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:34 GMT + - Wed, 13 Jan 2021 01:41:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19933,17 +24943,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19951,11 +24961,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:37 GMT + - Wed, 13 Jan 2021 01:41:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -19988,17 +24996,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20006,11 +25014,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:39 GMT + - Wed, 13 Jan 2021 01:41:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20043,17 +25049,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20061,11 +25067,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:41 GMT + - Wed, 13 Jan 2021 01:41:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20098,17 +25102,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20116,11 +25120,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:43 GMT + - Wed, 13 Jan 2021 01:41:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20153,17 +25155,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20171,11 +25173,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:45 GMT + - Wed, 13 Jan 2021 01:41:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20208,17 +25208,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20226,11 +25226,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:47 GMT + - Wed, 13 Jan 2021 01:41:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20263,17 +25261,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20281,11 +25279,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:49 GMT + - Wed, 13 Jan 2021 01:41:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20318,17 +25314,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20336,11 +25332,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:51 GMT + - Wed, 13 Jan 2021 01:41:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20373,17 +25367,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20391,11 +25385,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:53 GMT + - Wed, 13 Jan 2021 01:41:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20428,17 +25420,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20446,11 +25438,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Wed, 13 Jan 2021 01:41:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20483,17 +25473,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20501,11 +25491,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:58 GMT + - Wed, 13 Jan 2021 01:41:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20538,17 +25526,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20556,11 +25544,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:00 GMT + - Wed, 13 Jan 2021 01:41:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20593,17 +25579,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20611,11 +25597,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:02 GMT + - Wed, 13 Jan 2021 01:41:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20648,17 +25632,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20666,11 +25650,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:04 GMT + - Wed, 13 Jan 2021 01:41:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20703,17 +25685,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20721,11 +25703,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:06 GMT + - Wed, 13 Jan 2021 01:41:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20758,17 +25738,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20776,11 +25756,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:08 GMT + - Wed, 13 Jan 2021 01:41:41 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20813,17 +25791,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20831,11 +25809,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:10 GMT + - Wed, 13 Jan 2021 01:41:43 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20868,17 +25844,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20886,11 +25862,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:13 GMT + - Wed, 13 Jan 2021 01:41:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20923,17 +25897,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20941,11 +25915,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:15 GMT + - Wed, 13 Jan 2021 01:41:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -20978,17 +25950,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20996,11 +25968,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:17 GMT + - Wed, 13 Jan 2021 01:41:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21033,17 +26003,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21051,11 +26021,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:19 GMT + - Wed, 13 Jan 2021 01:41:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21088,17 +26056,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21106,11 +26074,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:21 GMT + - Wed, 13 Jan 2021 01:41:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21143,17 +26109,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21161,11 +26127,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:23 GMT + - Wed, 13 Jan 2021 01:41:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21198,17 +26162,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21216,11 +26180,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:25 GMT + - Wed, 13 Jan 2021 01:41:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21253,17 +26215,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21271,11 +26233,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:27 GMT + - Wed, 13 Jan 2021 01:42:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21308,17 +26268,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21326,11 +26286,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:30 GMT + - Wed, 13 Jan 2021 01:42:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21363,17 +26321,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21381,11 +26339,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:32 GMT + - Wed, 13 Jan 2021 01:42:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21418,17 +26374,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21436,11 +26392,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:34 GMT + - Wed, 13 Jan 2021 01:42:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21473,17 +26427,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21491,11 +26445,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:36 GMT + - Wed, 13 Jan 2021 01:42:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21528,17 +26480,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21546,11 +26498,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:38 GMT + - Wed, 13 Jan 2021 01:42:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21583,17 +26533,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21601,11 +26551,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:40 GMT + - Wed, 13 Jan 2021 01:42:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21638,17 +26586,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21656,11 +26604,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:42 GMT + - Wed, 13 Jan 2021 01:42:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21693,17 +26639,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21711,11 +26657,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:44 GMT + - Wed, 13 Jan 2021 01:42:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21748,17 +26692,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21766,11 +26710,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Wed, 13 Jan 2021 01:42:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21803,17 +26745,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21821,11 +26763,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:49 GMT + - Wed, 13 Jan 2021 01:42:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21858,17 +26798,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21876,11 +26816,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:51 GMT + - Wed, 13 Jan 2021 01:42:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21913,17 +26851,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21931,11 +26869,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:53 GMT + - Wed, 13 Jan 2021 01:42:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -21968,17 +26904,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21986,11 +26922,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:55 GMT + - Wed, 13 Jan 2021 01:42:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22023,17 +26957,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22041,11 +26975,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:57 GMT + - Wed, 13 Jan 2021 01:42:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22078,17 +27010,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22096,11 +27028,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Wed, 13 Jan 2021 01:42:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22133,17 +27063,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22151,11 +27081,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:01 GMT + - Wed, 13 Jan 2021 01:42:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22188,17 +27116,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22206,11 +27134,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:04 GMT + - Wed, 13 Jan 2021 01:42:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22243,17 +27169,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22261,11 +27187,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:06 GMT + - Wed, 13 Jan 2021 01:42:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22298,17 +27222,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22316,11 +27240,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:08 GMT + - Wed, 13 Jan 2021 01:42:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22353,17 +27275,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22371,11 +27293,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:10 GMT + - Wed, 13 Jan 2021 01:42:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22408,17 +27328,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22426,11 +27346,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:12 GMT + - Wed, 13 Jan 2021 01:42:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22463,17 +27381,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22481,11 +27399,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:14 GMT + - Wed, 13 Jan 2021 01:42:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22518,17 +27434,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22536,11 +27452,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:16 GMT + - Wed, 13 Jan 2021 01:42:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22573,17 +27487,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22591,11 +27505,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Wed, 13 Jan 2021 01:42:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22628,17 +27540,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22646,11 +27558,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:21 GMT + - Wed, 13 Jan 2021 01:42:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22683,17 +27593,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22701,11 +27611,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:23 GMT + - Wed, 13 Jan 2021 01:42:55 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22738,17 +27646,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22756,11 +27664,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:25 GMT + - Wed, 13 Jan 2021 01:42:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22793,17 +27699,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22811,11 +27717,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:27 GMT + - Wed, 13 Jan 2021 01:42:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22848,17 +27752,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22866,11 +27770,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:29 GMT + - Wed, 13 Jan 2021 01:43:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22903,17 +27805,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22921,11 +27823,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:31 GMT + - Wed, 13 Jan 2021 01:43:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -22958,17 +27858,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22976,11 +27876,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:33 GMT + - Wed, 13 Jan 2021 01:43:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23013,17 +27911,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23031,11 +27929,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:35 GMT + - Wed, 13 Jan 2021 01:43:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23068,17 +27964,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23086,11 +27982,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:38 GMT + - Wed, 13 Jan 2021 01:43:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23123,17 +28017,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23141,11 +28035,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:40 GMT + - Wed, 13 Jan 2021 01:43:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23178,17 +28070,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23196,11 +28088,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Wed, 13 Jan 2021 01:43:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23233,17 +28123,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23251,11 +28141,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Wed, 13 Jan 2021 01:43:17 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23288,17 +28176,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23306,11 +28194,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:47 GMT + - Wed, 13 Jan 2021 01:43:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23343,17 +28229,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23361,11 +28247,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:49 GMT + - Wed, 13 Jan 2021 01:43:21 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23398,17 +28282,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23416,11 +28300,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:51 GMT + - Wed, 13 Jan 2021 01:43:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23453,17 +28335,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23471,11 +28353,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:53 GMT + - Wed, 13 Jan 2021 01:43:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23508,17 +28388,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23526,11 +28406,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:56 GMT + - Wed, 13 Jan 2021 01:43:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23563,17 +28441,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23581,11 +28459,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:58 GMT + - Wed, 13 Jan 2021 01:43:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23618,17 +28494,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23636,11 +28512,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:00 GMT + - Wed, 13 Jan 2021 01:43:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23673,17 +28547,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23691,11 +28565,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:02 GMT + - Wed, 13 Jan 2021 01:43:34 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23728,17 +28600,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23746,11 +28618,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Wed, 13 Jan 2021 01:43:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23783,17 +28653,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23801,11 +28671,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Wed, 13 Jan 2021 01:43:38 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23838,17 +28706,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23856,11 +28724,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Wed, 13 Jan 2021 01:43:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23893,17 +28759,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23911,11 +28777,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:10 GMT + - Wed, 13 Jan 2021 01:43:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -23948,17 +28812,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23966,11 +28830,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Wed, 13 Jan 2021 01:43:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24003,17 +28865,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24021,11 +28883,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Wed, 13 Jan 2021 01:43:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24058,17 +28918,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24076,11 +28936,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Wed, 13 Jan 2021 01:43:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24113,17 +28971,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24131,11 +28989,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:19 GMT + - Wed, 13 Jan 2021 01:43:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24168,17 +29024,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24186,11 +29042,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:21 GMT + - Wed, 13 Jan 2021 01:43:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24223,17 +29077,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24241,11 +29095,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Wed, 13 Jan 2021 01:43:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24278,17 +29130,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24296,11 +29148,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Wed, 13 Jan 2021 01:43:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24333,24 +29183,24 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2020-09-25T21:44:45.3055836Z\",\"lastModified\":\"2020-09-25T22:00:25.3102213Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:26.020678Z\",\"lastModified\":\"2021-01-13T01:43:58.3071042Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '865' + - '864' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Wed, 13 Jan 2021 01:43:58 GMT expires: - '-1' odata-version: @@ -24387,27 +29237,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/stop?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/stop?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/62863e0c-7321-4a8a-ba37-ba868c9d2909?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 22:00:27 GMT + - Wed, 13 Jan 2021 01:43:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/62863e0c-7321-4a8a-ba37-ba868c9d2909?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 pragma: - no-cache server: @@ -24436,17 +29286,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/62863e0c-7321-4a8a-ba37-ba868c9d2909?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"62863e0c-7321-4a8a-ba37-ba868c9d2909\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"399be3f3-216c-479b-a5a1-ceee88767e4f\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/62863e0c-7321-4a8a-ba37-ba868c9d2909?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24454,11 +29304,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:29 GMT + - Wed, 13 Jan 2021 01:44:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/62863e0c-7321-4a8a-ba37-ba868c9d2909?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -24491,16 +29339,16 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:45.3055836Z\",\"lastModified\":\"2020-09-25T22:00:29.831742Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:26.020678Z\",\"lastModified\":\"2021-01-13T01:44:01.7778263Z\"\r\n \ }\r\n}" headers: cache-control: @@ -24510,7 +29358,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:30 GMT + - Wed, 13 Jan 2021 01:44:03 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml index b4144d0ad68..50ce1ee3957 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"77acd406-bfc8-4b04-8cac-cf422d71a063\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"22f46e29-d5e7-4a67-a5fb-0edddbde99c7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:48 GMT + - Wed, 13 Jan 2021 01:24:21 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"77acd406-bfc8-4b04-8cac-cf422d71a063\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"22f46e29-d5e7-4a67-a5fb-0edddbde99c7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:49 GMT + - Wed, 13 Jan 2021 01:24:22 GMT expires: - '-1' odata-version: @@ -130,22 +134,22 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:50.5304077Z\",\"lastModified\":\"2020-09-25T21:44:50.5304077Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.3083605Z\",\"lastModified\":\"2021-01-13T01:24:23.3083605Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -153,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:49 GMT + - Wed, 13 Jan 2021 01:24:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -169,10 +173,63 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: - code: 202 - message: Accepted + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:24:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: @@ -188,17 +245,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:52 GMT + - Wed, 13 Jan 2021 01:24:27 GMT expires: - '-1' odata-version: @@ -241,17 +298,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -259,7 +316,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:54 GMT + - Wed, 13 Jan 2021 01:24:29 GMT expires: - '-1' odata-version: @@ -294,17 +351,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -312,7 +369,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Wed, 13 Jan 2021 01:24:31 GMT expires: - '-1' odata-version: @@ -347,17 +404,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -365,7 +422,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:58 GMT + - Wed, 13 Jan 2021 01:24:34 GMT expires: - '-1' odata-version: @@ -400,17 +457,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -418,7 +475,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:00 GMT + - Wed, 13 Jan 2021 01:24:36 GMT expires: - '-1' odata-version: @@ -453,17 +510,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -471,7 +528,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:03 GMT + - Wed, 13 Jan 2021 01:24:38 GMT expires: - '-1' odata-version: @@ -506,17 +563,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -524,7 +581,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:05 GMT + - Wed, 13 Jan 2021 01:24:40 GMT expires: - '-1' odata-version: @@ -559,17 +616,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -577,7 +634,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:07 GMT + - Wed, 13 Jan 2021 01:24:42 GMT expires: - '-1' odata-version: @@ -612,17 +669,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -630,7 +687,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:10 GMT + - Wed, 13 Jan 2021 01:24:44 GMT expires: - '-1' odata-version: @@ -665,17 +722,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -683,7 +740,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:12 GMT + - Wed, 13 Jan 2021 01:24:46 GMT expires: - '-1' odata-version: @@ -718,17 +775,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -736,7 +793,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:14 GMT + - Wed, 13 Jan 2021 01:24:48 GMT expires: - '-1' odata-version: @@ -771,17 +828,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -789,7 +846,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:16 GMT + - Wed, 13 Jan 2021 01:24:50 GMT expires: - '-1' odata-version: @@ -824,17 +881,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -842,7 +899,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:18 GMT + - Wed, 13 Jan 2021 01:24:53 GMT expires: - '-1' odata-version: @@ -877,17 +934,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -895,7 +952,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:20 GMT + - Wed, 13 Jan 2021 01:24:55 GMT expires: - '-1' odata-version: @@ -930,17 +987,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -948,7 +1005,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:23 GMT + - Wed, 13 Jan 2021 01:24:57 GMT expires: - '-1' odata-version: @@ -983,17 +1040,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1001,7 +1058,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:25 GMT + - Wed, 13 Jan 2021 01:24:59 GMT expires: - '-1' odata-version: @@ -1036,17 +1093,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1054,7 +1111,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:27 GMT + - Wed, 13 Jan 2021 01:25:01 GMT expires: - '-1' odata-version: @@ -1089,17 +1146,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1107,7 +1164,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:29 GMT + - Wed, 13 Jan 2021 01:25:03 GMT expires: - '-1' odata-version: @@ -1142,17 +1199,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1160,7 +1217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:31 GMT + - Wed, 13 Jan 2021 01:25:05 GMT expires: - '-1' odata-version: @@ -1195,17 +1252,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1213,7 +1270,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:33 GMT + - Wed, 13 Jan 2021 01:25:07 GMT expires: - '-1' odata-version: @@ -1248,17 +1305,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1266,7 +1323,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:35 GMT + - Wed, 13 Jan 2021 01:25:10 GMT expires: - '-1' odata-version: @@ -1301,17 +1358,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1319,7 +1376,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:37 GMT + - Wed, 13 Jan 2021 01:25:13 GMT expires: - '-1' odata-version: @@ -1354,17 +1411,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1372,7 +1429,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Wed, 13 Jan 2021 01:25:15 GMT expires: - '-1' odata-version: @@ -1407,17 +1464,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1425,7 +1482,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:42 GMT + - Wed, 13 Jan 2021 01:25:17 GMT expires: - '-1' odata-version: @@ -1460,17 +1517,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1478,7 +1535,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:44 GMT + - Wed, 13 Jan 2021 01:25:19 GMT expires: - '-1' odata-version: @@ -1513,17 +1570,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1531,7 +1588,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:46 GMT + - Wed, 13 Jan 2021 01:25:21 GMT expires: - '-1' odata-version: @@ -1566,17 +1623,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1584,7 +1641,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:48 GMT + - Wed, 13 Jan 2021 01:25:23 GMT expires: - '-1' odata-version: @@ -1619,17 +1676,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1637,7 +1694,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:50 GMT + - Wed, 13 Jan 2021 01:25:25 GMT expires: - '-1' odata-version: @@ -1672,17 +1729,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1690,7 +1747,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:52 GMT + - Wed, 13 Jan 2021 01:25:28 GMT expires: - '-1' odata-version: @@ -1725,17 +1782,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1743,7 +1800,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:54 GMT + - Wed, 13 Jan 2021 01:25:30 GMT expires: - '-1' odata-version: @@ -1778,17 +1835,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1796,7 +1853,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:56 GMT + - Wed, 13 Jan 2021 01:25:32 GMT expires: - '-1' odata-version: @@ -1831,17 +1888,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1849,7 +1906,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:59 GMT + - Wed, 13 Jan 2021 01:25:34 GMT expires: - '-1' odata-version: @@ -1884,17 +1941,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1902,7 +1959,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:01 GMT + - Wed, 13 Jan 2021 01:25:36 GMT expires: - '-1' odata-version: @@ -1937,17 +1994,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1955,7 +2012,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Wed, 13 Jan 2021 01:25:38 GMT expires: - '-1' odata-version: @@ -1990,17 +2047,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2008,7 +2065,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:05 GMT + - Wed, 13 Jan 2021 01:25:40 GMT expires: - '-1' odata-version: @@ -2043,17 +2100,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2061,7 +2118,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:07 GMT + - Wed, 13 Jan 2021 01:25:42 GMT expires: - '-1' odata-version: @@ -2096,17 +2153,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2114,7 +2171,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:09 GMT + - Wed, 13 Jan 2021 01:25:44 GMT expires: - '-1' odata-version: @@ -2149,17 +2206,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2167,7 +2224,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:11 GMT + - Wed, 13 Jan 2021 01:25:47 GMT expires: - '-1' odata-version: @@ -2202,17 +2259,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2220,7 +2277,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:13 GMT + - Wed, 13 Jan 2021 01:25:49 GMT expires: - '-1' odata-version: @@ -2255,17 +2312,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2273,7 +2330,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:16 GMT + - Wed, 13 Jan 2021 01:25:51 GMT expires: - '-1' odata-version: @@ -2308,17 +2365,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2326,7 +2383,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:18 GMT + - Wed, 13 Jan 2021 01:25:53 GMT expires: - '-1' odata-version: @@ -2361,17 +2418,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2379,7 +2436,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:20 GMT + - Wed, 13 Jan 2021 01:25:55 GMT expires: - '-1' odata-version: @@ -2414,17 +2471,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2432,7 +2489,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:22 GMT + - Wed, 13 Jan 2021 01:25:57 GMT expires: - '-1' odata-version: @@ -2467,17 +2524,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2485,7 +2542,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:24 GMT + - Wed, 13 Jan 2021 01:25:59 GMT expires: - '-1' odata-version: @@ -2520,17 +2577,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2538,7 +2595,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:26 GMT + - Wed, 13 Jan 2021 01:26:01 GMT expires: - '-1' odata-version: @@ -2573,17 +2630,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2591,7 +2648,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Wed, 13 Jan 2021 01:26:03 GMT expires: - '-1' odata-version: @@ -2626,17 +2683,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2644,7 +2701,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:30 GMT + - Wed, 13 Jan 2021 01:26:06 GMT expires: - '-1' odata-version: @@ -2679,17 +2736,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2697,7 +2754,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:32 GMT + - Wed, 13 Jan 2021 01:26:08 GMT expires: - '-1' odata-version: @@ -2732,17 +2789,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2750,7 +2807,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:35 GMT + - Wed, 13 Jan 2021 01:26:10 GMT expires: - '-1' odata-version: @@ -2785,17 +2842,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2803,7 +2860,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:37 GMT + - Wed, 13 Jan 2021 01:26:12 GMT expires: - '-1' odata-version: @@ -2838,17 +2895,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2856,7 +2913,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:39 GMT + - Wed, 13 Jan 2021 01:26:14 GMT expires: - '-1' odata-version: @@ -2891,17 +2948,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2909,7 +2966,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:41 GMT + - Wed, 13 Jan 2021 01:26:16 GMT expires: - '-1' odata-version: @@ -2944,17 +3001,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2962,7 +3019,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:43 GMT + - Wed, 13 Jan 2021 01:26:18 GMT expires: - '-1' odata-version: @@ -2997,17 +3054,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3015,7 +3072,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:45 GMT + - Wed, 13 Jan 2021 01:26:20 GMT expires: - '-1' odata-version: @@ -3050,17 +3107,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3068,7 +3125,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:47 GMT + - Wed, 13 Jan 2021 01:26:22 GMT expires: - '-1' odata-version: @@ -3103,17 +3160,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3121,7 +3178,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:50 GMT + - Wed, 13 Jan 2021 01:26:25 GMT expires: - '-1' odata-version: @@ -3156,17 +3213,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3174,7 +3231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:52 GMT + - Wed, 13 Jan 2021 01:26:27 GMT expires: - '-1' odata-version: @@ -3209,17 +3266,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3227,7 +3284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:54 GMT + - Wed, 13 Jan 2021 01:26:29 GMT expires: - '-1' odata-version: @@ -3262,17 +3319,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3280,7 +3337,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:56 GMT + - Wed, 13 Jan 2021 01:26:31 GMT expires: - '-1' odata-version: @@ -3315,17 +3372,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3333,7 +3390,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:58 GMT + - Wed, 13 Jan 2021 01:26:33 GMT expires: - '-1' odata-version: @@ -3368,17 +3425,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3386,7 +3443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:00 GMT + - Wed, 13 Jan 2021 01:26:35 GMT expires: - '-1' odata-version: @@ -3421,17 +3478,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3439,7 +3496,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:02 GMT + - Wed, 13 Jan 2021 01:26:37 GMT expires: - '-1' odata-version: @@ -3474,17 +3531,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3492,7 +3549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:04 GMT + - Wed, 13 Jan 2021 01:26:39 GMT expires: - '-1' odata-version: @@ -3527,17 +3584,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3545,7 +3602,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:07 GMT + - Wed, 13 Jan 2021 01:26:42 GMT expires: - '-1' odata-version: @@ -3580,17 +3637,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3598,7 +3655,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:09 GMT + - Wed, 13 Jan 2021 01:26:44 GMT expires: - '-1' odata-version: @@ -3633,17 +3690,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3651,7 +3708,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:11 GMT + - Wed, 13 Jan 2021 01:26:46 GMT expires: - '-1' odata-version: @@ -3686,17 +3743,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3704,7 +3761,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Wed, 13 Jan 2021 01:26:48 GMT expires: - '-1' odata-version: @@ -3739,17 +3796,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3757,7 +3814,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Wed, 13 Jan 2021 01:26:50 GMT expires: - '-1' odata-version: @@ -3792,17 +3849,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3810,7 +3867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:17 GMT + - Wed, 13 Jan 2021 01:26:52 GMT expires: - '-1' odata-version: @@ -3845,17 +3902,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3863,7 +3920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:19 GMT + - Wed, 13 Jan 2021 01:26:54 GMT expires: - '-1' odata-version: @@ -3898,17 +3955,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3916,7 +3973,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:21 GMT + - Wed, 13 Jan 2021 01:26:56 GMT expires: - '-1' odata-version: @@ -3951,17 +4008,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3969,7 +4026,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:23 GMT + - Wed, 13 Jan 2021 01:26:58 GMT expires: - '-1' odata-version: @@ -4004,17 +4061,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4022,7 +4079,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:26 GMT + - Wed, 13 Jan 2021 01:27:01 GMT expires: - '-1' odata-version: @@ -4057,17 +4114,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4075,7 +4132,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:28 GMT + - Wed, 13 Jan 2021 01:27:03 GMT expires: - '-1' odata-version: @@ -4110,17 +4167,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4128,7 +4185,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:31 GMT + - Wed, 13 Jan 2021 01:27:05 GMT expires: - '-1' odata-version: @@ -4163,17 +4220,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4181,7 +4238,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:33 GMT + - Wed, 13 Jan 2021 01:27:07 GMT expires: - '-1' odata-version: @@ -4216,17 +4273,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4234,7 +4291,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:35 GMT + - Wed, 13 Jan 2021 01:27:09 GMT expires: - '-1' odata-version: @@ -4269,17 +4326,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4287,7 +4344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:37 GMT + - Wed, 13 Jan 2021 01:27:11 GMT expires: - '-1' odata-version: @@ -4322,17 +4379,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4340,7 +4397,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:39 GMT + - Wed, 13 Jan 2021 01:27:13 GMT expires: - '-1' odata-version: @@ -4375,17 +4432,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4393,7 +4450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:41 GMT + - Wed, 13 Jan 2021 01:27:15 GMT expires: - '-1' odata-version: @@ -4428,17 +4485,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4446,7 +4503,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:43 GMT + - Wed, 13 Jan 2021 01:27:18 GMT expires: - '-1' odata-version: @@ -4481,17 +4538,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4499,7 +4556,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:46 GMT + - Wed, 13 Jan 2021 01:27:20 GMT expires: - '-1' odata-version: @@ -4534,17 +4591,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4552,7 +4609,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:48 GMT + - Wed, 13 Jan 2021 01:27:22 GMT expires: - '-1' odata-version: @@ -4587,17 +4644,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4605,7 +4662,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:50 GMT + - Wed, 13 Jan 2021 01:27:24 GMT expires: - '-1' odata-version: @@ -4640,17 +4697,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4658,7 +4715,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:52 GMT + - Wed, 13 Jan 2021 01:27:26 GMT expires: - '-1' odata-version: @@ -4693,17 +4750,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4711,7 +4768,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:54 GMT + - Wed, 13 Jan 2021 01:27:28 GMT expires: - '-1' odata-version: @@ -4746,17 +4803,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4764,7 +4821,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:56 GMT + - Wed, 13 Jan 2021 01:27:30 GMT expires: - '-1' odata-version: @@ -4799,17 +4856,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4817,7 +4874,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:58 GMT + - Wed, 13 Jan 2021 01:27:32 GMT expires: - '-1' odata-version: @@ -4852,17 +4909,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4870,7 +4927,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:00 GMT + - Wed, 13 Jan 2021 01:27:34 GMT expires: - '-1' odata-version: @@ -4905,17 +4962,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4923,7 +4980,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:02 GMT + - Wed, 13 Jan 2021 01:27:38 GMT expires: - '-1' odata-version: @@ -4958,17 +5015,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4976,7 +5033,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:05 GMT + - Wed, 13 Jan 2021 01:27:40 GMT expires: - '-1' odata-version: @@ -5011,17 +5068,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5029,7 +5086,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:07 GMT + - Wed, 13 Jan 2021 01:27:42 GMT expires: - '-1' odata-version: @@ -5064,17 +5121,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5082,7 +5139,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:09 GMT + - Wed, 13 Jan 2021 01:27:44 GMT expires: - '-1' odata-version: @@ -5117,17 +5174,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5135,7 +5192,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:11 GMT + - Wed, 13 Jan 2021 01:27:46 GMT expires: - '-1' odata-version: @@ -5170,17 +5227,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5188,7 +5245,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:13 GMT + - Wed, 13 Jan 2021 01:27:48 GMT expires: - '-1' odata-version: @@ -5223,17 +5280,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5241,7 +5298,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:15 GMT + - Wed, 13 Jan 2021 01:27:50 GMT expires: - '-1' odata-version: @@ -5276,17 +5333,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5294,7 +5351,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:17 GMT + - Wed, 13 Jan 2021 01:27:52 GMT expires: - '-1' odata-version: @@ -5329,17 +5386,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5347,7 +5404,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:19 GMT + - Wed, 13 Jan 2021 01:27:55 GMT expires: - '-1' odata-version: @@ -5382,17 +5439,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5400,7 +5457,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:22 GMT + - Wed, 13 Jan 2021 01:27:57 GMT expires: - '-1' odata-version: @@ -5435,17 +5492,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5453,7 +5510,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:24 GMT + - Wed, 13 Jan 2021 01:27:59 GMT expires: - '-1' odata-version: @@ -5488,17 +5545,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5506,7 +5563,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:26 GMT + - Wed, 13 Jan 2021 01:28:01 GMT expires: - '-1' odata-version: @@ -5541,17 +5598,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5559,7 +5616,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:28 GMT + - Wed, 13 Jan 2021 01:28:03 GMT expires: - '-1' odata-version: @@ -5594,17 +5651,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5612,7 +5669,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:30 GMT + - Wed, 13 Jan 2021 01:28:05 GMT expires: - '-1' odata-version: @@ -5647,17 +5704,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5665,7 +5722,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:32 GMT + - Wed, 13 Jan 2021 01:28:07 GMT expires: - '-1' odata-version: @@ -5700,17 +5757,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5718,7 +5775,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:34 GMT + - Wed, 13 Jan 2021 01:28:09 GMT expires: - '-1' odata-version: @@ -5753,17 +5810,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5771,7 +5828,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:36 GMT + - Wed, 13 Jan 2021 01:28:12 GMT expires: - '-1' odata-version: @@ -5806,17 +5863,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5824,7 +5881,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:38 GMT + - Wed, 13 Jan 2021 01:28:14 GMT expires: - '-1' odata-version: @@ -5859,17 +5916,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5877,7 +5934,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:41 GMT + - Wed, 13 Jan 2021 01:28:16 GMT expires: - '-1' odata-version: @@ -5912,17 +5969,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5930,7 +5987,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:43 GMT + - Wed, 13 Jan 2021 01:28:18 GMT expires: - '-1' odata-version: @@ -5965,17 +6022,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5983,7 +6040,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:45 GMT + - Wed, 13 Jan 2021 01:28:20 GMT expires: - '-1' odata-version: @@ -6018,17 +6075,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6036,7 +6093,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:47 GMT + - Wed, 13 Jan 2021 01:28:22 GMT expires: - '-1' odata-version: @@ -6071,17 +6128,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6089,7 +6146,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:49 GMT + - Wed, 13 Jan 2021 01:28:24 GMT expires: - '-1' odata-version: @@ -6124,17 +6181,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6142,7 +6199,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:51 GMT + - Wed, 13 Jan 2021 01:28:26 GMT expires: - '-1' odata-version: @@ -6177,17 +6234,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6195,7 +6252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:53 GMT + - Wed, 13 Jan 2021 01:28:28 GMT expires: - '-1' odata-version: @@ -6230,17 +6287,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6248,7 +6305,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:55 GMT + - Wed, 13 Jan 2021 01:28:31 GMT expires: - '-1' odata-version: @@ -6283,17 +6340,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6301,7 +6358,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:58 GMT + - Wed, 13 Jan 2021 01:28:33 GMT expires: - '-1' odata-version: @@ -6336,17 +6393,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6354,7 +6411,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:00 GMT + - Wed, 13 Jan 2021 01:28:35 GMT expires: - '-1' odata-version: @@ -6389,17 +6446,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6407,7 +6464,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:02 GMT + - Wed, 13 Jan 2021 01:28:37 GMT expires: - '-1' odata-version: @@ -6442,17 +6499,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6460,7 +6517,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:04 GMT + - Wed, 13 Jan 2021 01:28:39 GMT expires: - '-1' odata-version: @@ -6495,17 +6552,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6513,7 +6570,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:06 GMT + - Wed, 13 Jan 2021 01:28:42 GMT expires: - '-1' odata-version: @@ -6548,17 +6605,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6566,7 +6623,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:08 GMT + - Wed, 13 Jan 2021 01:28:44 GMT expires: - '-1' odata-version: @@ -6601,17 +6658,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6619,7 +6676,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:10 GMT + - Wed, 13 Jan 2021 01:28:46 GMT expires: - '-1' odata-version: @@ -6654,17 +6711,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6672,7 +6729,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:12 GMT + - Wed, 13 Jan 2021 01:28:48 GMT expires: - '-1' odata-version: @@ -6707,17 +6764,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6725,7 +6782,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:15 GMT + - Wed, 13 Jan 2021 01:28:50 GMT expires: - '-1' odata-version: @@ -6760,17 +6817,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6778,7 +6835,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:17 GMT + - Wed, 13 Jan 2021 01:28:52 GMT expires: - '-1' odata-version: @@ -6813,17 +6870,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6831,7 +6888,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:19 GMT + - Wed, 13 Jan 2021 01:28:54 GMT expires: - '-1' odata-version: @@ -6866,17 +6923,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6884,7 +6941,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:21 GMT + - Wed, 13 Jan 2021 01:28:57 GMT expires: - '-1' odata-version: @@ -6919,17 +6976,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6937,7 +6994,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:23 GMT + - Wed, 13 Jan 2021 01:28:59 GMT expires: - '-1' odata-version: @@ -6972,17 +7029,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6990,7 +7047,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:25 GMT + - Wed, 13 Jan 2021 01:29:01 GMT expires: - '-1' odata-version: @@ -7025,17 +7082,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7043,7 +7100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:27 GMT + - Wed, 13 Jan 2021 01:29:03 GMT expires: - '-1' odata-version: @@ -7078,17 +7135,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7096,7 +7153,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:29 GMT + - Wed, 13 Jan 2021 01:29:05 GMT expires: - '-1' odata-version: @@ -7131,17 +7188,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7149,7 +7206,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:32 GMT + - Wed, 13 Jan 2021 01:29:07 GMT expires: - '-1' odata-version: @@ -7184,17 +7241,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7202,7 +7259,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:34 GMT + - Wed, 13 Jan 2021 01:29:09 GMT expires: - '-1' odata-version: @@ -7237,17 +7294,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7255,7 +7312,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:36 GMT + - Wed, 13 Jan 2021 01:29:11 GMT expires: - '-1' odata-version: @@ -7290,17 +7347,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7308,7 +7365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:38 GMT + - Wed, 13 Jan 2021 01:29:14 GMT expires: - '-1' odata-version: @@ -7343,17 +7400,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7361,7 +7418,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:40 GMT + - Wed, 13 Jan 2021 01:29:16 GMT expires: - '-1' odata-version: @@ -7396,17 +7453,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7414,7 +7471,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:42 GMT + - Wed, 13 Jan 2021 01:29:18 GMT expires: - '-1' odata-version: @@ -7449,17 +7506,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7467,7 +7524,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:44 GMT + - Wed, 13 Jan 2021 01:29:20 GMT expires: - '-1' odata-version: @@ -7502,17 +7559,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7520,7 +7577,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:46 GMT + - Wed, 13 Jan 2021 01:29:22 GMT expires: - '-1' odata-version: @@ -7555,17 +7612,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7573,7 +7630,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:49 GMT + - Wed, 13 Jan 2021 01:29:24 GMT expires: - '-1' odata-version: @@ -7608,17 +7665,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7626,7 +7683,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:52 GMT + - Wed, 13 Jan 2021 01:29:26 GMT expires: - '-1' odata-version: @@ -7661,17 +7718,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7679,7 +7736,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:54 GMT + - Wed, 13 Jan 2021 01:29:28 GMT expires: - '-1' odata-version: @@ -7714,17 +7771,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7732,7 +7789,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:56 GMT + - Wed, 13 Jan 2021 01:29:30 GMT expires: - '-1' odata-version: @@ -7767,17 +7824,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7785,7 +7842,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:58 GMT + - Wed, 13 Jan 2021 01:29:33 GMT expires: - '-1' odata-version: @@ -7820,17 +7877,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7838,7 +7895,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:00 GMT + - Wed, 13 Jan 2021 01:29:35 GMT expires: - '-1' odata-version: @@ -7873,17 +7930,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7891,7 +7948,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:02 GMT + - Wed, 13 Jan 2021 01:29:37 GMT expires: - '-1' odata-version: @@ -7926,17 +7983,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7944,7 +8001,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:04 GMT + - Wed, 13 Jan 2021 01:29:39 GMT expires: - '-1' odata-version: @@ -7979,17 +8036,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7997,7 +8054,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:06 GMT + - Wed, 13 Jan 2021 01:29:41 GMT expires: - '-1' odata-version: @@ -8032,17 +8089,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8050,7 +8107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:08 GMT + - Wed, 13 Jan 2021 01:29:43 GMT expires: - '-1' odata-version: @@ -8085,17 +8142,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8103,7 +8160,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:11 GMT + - Wed, 13 Jan 2021 01:29:45 GMT expires: - '-1' odata-version: @@ -8138,17 +8195,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8156,7 +8213,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:13 GMT + - Wed, 13 Jan 2021 01:29:47 GMT expires: - '-1' odata-version: @@ -8191,17 +8248,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8209,7 +8266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:15 GMT + - Wed, 13 Jan 2021 01:29:50 GMT expires: - '-1' odata-version: @@ -8244,17 +8301,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8262,7 +8319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:17 GMT + - Wed, 13 Jan 2021 01:29:52 GMT expires: - '-1' odata-version: @@ -8297,17 +8354,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8315,7 +8372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:19 GMT + - Wed, 13 Jan 2021 01:29:54 GMT expires: - '-1' odata-version: @@ -8350,17 +8407,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8368,7 +8425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:21 GMT + - Wed, 13 Jan 2021 01:29:56 GMT expires: - '-1' odata-version: @@ -8403,17 +8460,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8421,7 +8478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:23 GMT + - Wed, 13 Jan 2021 01:29:58 GMT expires: - '-1' odata-version: @@ -8456,17 +8513,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8474,7 +8531,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:25 GMT + - Wed, 13 Jan 2021 01:30:00 GMT expires: - '-1' odata-version: @@ -8509,17 +8566,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8527,7 +8584,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:28 GMT + - Wed, 13 Jan 2021 01:30:02 GMT expires: - '-1' odata-version: @@ -8562,17 +8619,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8580,7 +8637,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:30 GMT + - Wed, 13 Jan 2021 01:30:04 GMT expires: - '-1' odata-version: @@ -8615,17 +8672,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8633,7 +8690,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:32 GMT + - Wed, 13 Jan 2021 01:30:06 GMT expires: - '-1' odata-version: @@ -8668,17 +8725,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8686,7 +8743,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:34 GMT + - Wed, 13 Jan 2021 01:30:10 GMT expires: - '-1' odata-version: @@ -8721,17 +8778,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8739,7 +8796,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:36 GMT + - Wed, 13 Jan 2021 01:30:12 GMT expires: - '-1' odata-version: @@ -8774,17 +8831,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8792,7 +8849,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:38 GMT + - Wed, 13 Jan 2021 01:30:14 GMT expires: - '-1' odata-version: @@ -8827,17 +8884,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8845,7 +8902,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:40 GMT + - Wed, 13 Jan 2021 01:30:16 GMT expires: - '-1' odata-version: @@ -8880,17 +8937,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8898,7 +8955,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:42 GMT + - Wed, 13 Jan 2021 01:30:18 GMT expires: - '-1' odata-version: @@ -8933,17 +8990,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8951,7 +9008,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:45 GMT + - Wed, 13 Jan 2021 01:30:20 GMT expires: - '-1' odata-version: @@ -8986,17 +9043,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9004,7 +9061,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:47 GMT + - Wed, 13 Jan 2021 01:30:22 GMT expires: - '-1' odata-version: @@ -9039,17 +9096,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9057,7 +9114,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:49 GMT + - Wed, 13 Jan 2021 01:30:24 GMT expires: - '-1' odata-version: @@ -9092,17 +9149,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9110,7 +9167,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:51 GMT + - Wed, 13 Jan 2021 01:30:27 GMT expires: - '-1' odata-version: @@ -9145,17 +9202,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9163,7 +9220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:53 GMT + - Wed, 13 Jan 2021 01:30:29 GMT expires: - '-1' odata-version: @@ -9198,17 +9255,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9216,7 +9273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:55 GMT + - Wed, 13 Jan 2021 01:30:31 GMT expires: - '-1' odata-version: @@ -9251,17 +9308,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9269,7 +9326,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:58 GMT + - Wed, 13 Jan 2021 01:30:33 GMT expires: - '-1' odata-version: @@ -9304,17 +9361,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9322,7 +9379,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:00 GMT + - Wed, 13 Jan 2021 01:30:35 GMT expires: - '-1' odata-version: @@ -9357,17 +9414,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9375,7 +9432,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:02 GMT + - Wed, 13 Jan 2021 01:30:37 GMT expires: - '-1' odata-version: @@ -9410,17 +9467,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9428,7 +9485,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:04 GMT + - Wed, 13 Jan 2021 01:30:39 GMT expires: - '-1' odata-version: @@ -9463,17 +9520,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9481,7 +9538,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:06 GMT + - Wed, 13 Jan 2021 01:30:43 GMT expires: - '-1' odata-version: @@ -9516,17 +9573,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9534,7 +9591,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:08 GMT + - Wed, 13 Jan 2021 01:30:45 GMT expires: - '-1' odata-version: @@ -9569,17 +9626,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9587,7 +9644,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:10 GMT + - Wed, 13 Jan 2021 01:30:47 GMT expires: - '-1' odata-version: @@ -9622,17 +9679,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9640,7 +9697,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:12 GMT + - Wed, 13 Jan 2021 01:30:49 GMT expires: - '-1' odata-version: @@ -9675,17 +9732,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9693,7 +9750,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:15 GMT + - Wed, 13 Jan 2021 01:30:51 GMT expires: - '-1' odata-version: @@ -9728,17 +9785,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9746,7 +9803,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:17 GMT + - Wed, 13 Jan 2021 01:30:53 GMT expires: - '-1' odata-version: @@ -9781,17 +9838,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9799,7 +9856,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:19 GMT + - Wed, 13 Jan 2021 01:30:56 GMT expires: - '-1' odata-version: @@ -9834,17 +9891,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9852,7 +9909,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:21 GMT + - Wed, 13 Jan 2021 01:30:58 GMT expires: - '-1' odata-version: @@ -9887,17 +9944,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9905,7 +9962,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:23 GMT + - Wed, 13 Jan 2021 01:31:00 GMT expires: - '-1' odata-version: @@ -9940,17 +9997,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9958,7 +10015,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:25 GMT + - Wed, 13 Jan 2021 01:31:02 GMT expires: - '-1' odata-version: @@ -9993,17 +10050,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10011,7 +10068,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:27 GMT + - Wed, 13 Jan 2021 01:31:04 GMT expires: - '-1' odata-version: @@ -10046,17 +10103,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10064,7 +10121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:29 GMT + - Wed, 13 Jan 2021 01:31:06 GMT expires: - '-1' odata-version: @@ -10099,17 +10156,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10117,7 +10174,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Wed, 13 Jan 2021 01:31:08 GMT expires: - '-1' odata-version: @@ -10152,17 +10209,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10170,7 +10227,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Wed, 13 Jan 2021 01:31:10 GMT expires: - '-1' odata-version: @@ -10205,17 +10262,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10223,7 +10280,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Wed, 13 Jan 2021 01:31:13 GMT expires: - '-1' odata-version: @@ -10258,17 +10315,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10276,7 +10333,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:38 GMT + - Wed, 13 Jan 2021 01:31:15 GMT expires: - '-1' odata-version: @@ -10311,17 +10368,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10329,7 +10386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:40 GMT + - Wed, 13 Jan 2021 01:31:17 GMT expires: - '-1' odata-version: @@ -10364,17 +10421,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10382,7 +10439,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:42 GMT + - Wed, 13 Jan 2021 01:31:19 GMT expires: - '-1' odata-version: @@ -10417,17 +10474,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10435,7 +10492,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:44 GMT + - Wed, 13 Jan 2021 01:31:21 GMT expires: - '-1' odata-version: @@ -10470,17 +10527,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10488,7 +10545,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:46 GMT + - Wed, 13 Jan 2021 01:31:23 GMT expires: - '-1' odata-version: @@ -10523,17 +10580,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10541,7 +10598,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:49 GMT + - Wed, 13 Jan 2021 01:31:25 GMT expires: - '-1' odata-version: @@ -10576,17 +10633,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10594,7 +10651,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:51 GMT + - Wed, 13 Jan 2021 01:31:27 GMT expires: - '-1' odata-version: @@ -10629,17 +10686,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10647,7 +10704,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:53 GMT + - Wed, 13 Jan 2021 01:31:29 GMT expires: - '-1' odata-version: @@ -10682,17 +10739,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10700,7 +10757,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Wed, 13 Jan 2021 01:31:32 GMT expires: - '-1' odata-version: @@ -10735,17 +10792,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10753,7 +10810,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:57 GMT + - Wed, 13 Jan 2021 01:31:34 GMT expires: - '-1' odata-version: @@ -10788,17 +10845,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10806,7 +10863,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:59 GMT + - Wed, 13 Jan 2021 01:31:36 GMT expires: - '-1' odata-version: @@ -10841,17 +10898,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10859,7 +10916,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:01 GMT + - Wed, 13 Jan 2021 01:31:38 GMT expires: - '-1' odata-version: @@ -10894,17 +10951,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10912,7 +10969,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:03 GMT + - Wed, 13 Jan 2021 01:31:40 GMT expires: - '-1' odata-version: @@ -10947,17 +11004,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10965,7 +11022,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Wed, 13 Jan 2021 01:31:42 GMT expires: - '-1' odata-version: @@ -11000,17 +11057,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11018,7 +11075,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Wed, 13 Jan 2021 01:31:44 GMT expires: - '-1' odata-version: @@ -11053,17 +11110,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11071,7 +11128,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:10 GMT + - Wed, 13 Jan 2021 01:31:46 GMT expires: - '-1' odata-version: @@ -11106,17 +11163,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11124,7 +11181,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:12 GMT + - Wed, 13 Jan 2021 01:31:49 GMT expires: - '-1' odata-version: @@ -11159,17 +11216,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11177,7 +11234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:14 GMT + - Wed, 13 Jan 2021 01:31:51 GMT expires: - '-1' odata-version: @@ -11212,17 +11269,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11230,7 +11287,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:16 GMT + - Wed, 13 Jan 2021 01:31:53 GMT expires: - '-1' odata-version: @@ -11265,17 +11322,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11283,7 +11340,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:18 GMT + - Wed, 13 Jan 2021 01:31:55 GMT expires: - '-1' odata-version: @@ -11318,17 +11375,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11336,7 +11393,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:20 GMT + - Wed, 13 Jan 2021 01:31:57 GMT expires: - '-1' odata-version: @@ -11371,17 +11428,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11389,7 +11446,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:22 GMT + - Wed, 13 Jan 2021 01:31:59 GMT expires: - '-1' odata-version: @@ -11424,17 +11481,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11442,7 +11499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Wed, 13 Jan 2021 01:32:01 GMT expires: - '-1' odata-version: @@ -11477,17 +11534,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11495,7 +11552,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Wed, 13 Jan 2021 01:32:03 GMT expires: - '-1' odata-version: @@ -11530,17 +11587,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11548,7 +11605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Wed, 13 Jan 2021 01:32:06 GMT expires: - '-1' odata-version: @@ -11583,17 +11640,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11601,7 +11658,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Wed, 13 Jan 2021 01:32:08 GMT expires: - '-1' odata-version: @@ -11636,17 +11693,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11654,7 +11711,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:33 GMT + - Wed, 13 Jan 2021 01:32:10 GMT expires: - '-1' odata-version: @@ -11689,17 +11746,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11707,7 +11764,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:35 GMT + - Wed, 13 Jan 2021 01:32:12 GMT expires: - '-1' odata-version: @@ -11742,17 +11799,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11760,7 +11817,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:37 GMT + - Wed, 13 Jan 2021 01:32:14 GMT expires: - '-1' odata-version: @@ -11795,17 +11852,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11813,7 +11870,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:39 GMT + - Wed, 13 Jan 2021 01:32:16 GMT expires: - '-1' odata-version: @@ -11848,17 +11905,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11866,7 +11923,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:42 GMT + - Wed, 13 Jan 2021 01:32:18 GMT expires: - '-1' odata-version: @@ -11901,17 +11958,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11919,7 +11976,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:44 GMT + - Wed, 13 Jan 2021 01:32:20 GMT expires: - '-1' odata-version: @@ -11954,17 +12011,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11972,7 +12029,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:46 GMT + - Wed, 13 Jan 2021 01:32:23 GMT expires: - '-1' odata-version: @@ -12007,17 +12064,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12025,7 +12082,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Wed, 13 Jan 2021 01:32:25 GMT expires: - '-1' odata-version: @@ -12060,17 +12117,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12078,7 +12135,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:50 GMT + - Wed, 13 Jan 2021 01:32:27 GMT expires: - '-1' odata-version: @@ -12113,17 +12170,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12131,7 +12188,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:52 GMT + - Wed, 13 Jan 2021 01:32:29 GMT expires: - '-1' odata-version: @@ -12166,17 +12223,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12184,7 +12241,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:54 GMT + - Wed, 13 Jan 2021 01:32:31 GMT expires: - '-1' odata-version: @@ -12219,17 +12276,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12237,7 +12294,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Wed, 13 Jan 2021 01:32:33 GMT expires: - '-1' odata-version: @@ -12272,17 +12329,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12290,7 +12347,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:01 GMT + - Wed, 13 Jan 2021 01:32:35 GMT expires: - '-1' odata-version: @@ -12325,17 +12382,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12343,7 +12400,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:03 GMT + - Wed, 13 Jan 2021 01:32:39 GMT expires: - '-1' odata-version: @@ -12378,17 +12435,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12396,7 +12453,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:05 GMT + - Wed, 13 Jan 2021 01:32:41 GMT expires: - '-1' odata-version: @@ -12431,17 +12488,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12449,7 +12506,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:07 GMT + - Wed, 13 Jan 2021 01:32:43 GMT expires: - '-1' odata-version: @@ -12484,17 +12541,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12502,7 +12559,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:09 GMT + - Wed, 13 Jan 2021 01:32:45 GMT expires: - '-1' odata-version: @@ -12537,17 +12594,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12555,7 +12612,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Wed, 13 Jan 2021 01:32:47 GMT expires: - '-1' odata-version: @@ -12590,17 +12647,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12608,7 +12665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Wed, 13 Jan 2021 01:32:49 GMT expires: - '-1' odata-version: @@ -12643,17 +12700,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12661,7 +12718,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:16 GMT + - Wed, 13 Jan 2021 01:32:51 GMT expires: - '-1' odata-version: @@ -12696,17 +12753,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12714,7 +12771,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:18 GMT + - Wed, 13 Jan 2021 01:32:54 GMT expires: - '-1' odata-version: @@ -12749,17 +12806,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12767,7 +12824,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:20 GMT + - Wed, 13 Jan 2021 01:32:56 GMT expires: - '-1' odata-version: @@ -12802,17 +12859,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12820,7 +12877,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:22 GMT + - Wed, 13 Jan 2021 01:32:58 GMT expires: - '-1' odata-version: @@ -12855,17 +12912,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12873,7 +12930,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Wed, 13 Jan 2021 01:33:00 GMT expires: - '-1' odata-version: @@ -12908,17 +12965,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12926,7 +12983,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:26 GMT + - Wed, 13 Jan 2021 01:33:02 GMT expires: - '-1' odata-version: @@ -12961,17 +13018,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12979,7 +13036,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:28 GMT + - Wed, 13 Jan 2021 01:33:04 GMT expires: - '-1' odata-version: @@ -13014,17 +13071,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13032,7 +13089,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:30 GMT + - Wed, 13 Jan 2021 01:33:06 GMT expires: - '-1' odata-version: @@ -13067,17 +13124,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13085,7 +13142,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:32 GMT + - Wed, 13 Jan 2021 01:33:08 GMT expires: - '-1' odata-version: @@ -13120,17 +13177,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13138,7 +13195,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:35 GMT + - Wed, 13 Jan 2021 01:33:10 GMT expires: - '-1' odata-version: @@ -13173,17 +13230,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13191,7 +13248,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:37 GMT + - Wed, 13 Jan 2021 01:33:13 GMT expires: - '-1' odata-version: @@ -13226,17 +13283,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13244,7 +13301,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:39 GMT + - Wed, 13 Jan 2021 01:33:15 GMT expires: - '-1' odata-version: @@ -13279,17 +13336,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13297,7 +13354,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:41 GMT + - Wed, 13 Jan 2021 01:33:17 GMT expires: - '-1' odata-version: @@ -13332,17 +13389,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13350,7 +13407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Wed, 13 Jan 2021 01:33:19 GMT expires: - '-1' odata-version: @@ -13385,17 +13442,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13403,7 +13460,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Wed, 13 Jan 2021 01:33:21 GMT expires: - '-1' odata-version: @@ -13438,17 +13495,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13456,7 +13513,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Wed, 13 Jan 2021 01:33:23 GMT expires: - '-1' odata-version: @@ -13491,17 +13548,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13509,7 +13566,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Wed, 13 Jan 2021 01:33:25 GMT expires: - '-1' odata-version: @@ -13544,17 +13601,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13562,7 +13619,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:51 GMT + - Wed, 13 Jan 2021 01:33:27 GMT expires: - '-1' odata-version: @@ -13597,17 +13654,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13615,7 +13672,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:54 GMT + - Wed, 13 Jan 2021 01:33:29 GMT expires: - '-1' odata-version: @@ -13650,17 +13707,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13668,7 +13725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:56 GMT + - Wed, 13 Jan 2021 01:33:31 GMT expires: - '-1' odata-version: @@ -13703,17 +13760,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13721,7 +13778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:58 GMT + - Wed, 13 Jan 2021 01:33:34 GMT expires: - '-1' odata-version: @@ -13756,17 +13813,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13774,7 +13831,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:00 GMT + - Wed, 13 Jan 2021 01:33:36 GMT expires: - '-1' odata-version: @@ -13809,17 +13866,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13827,7 +13884,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:02 GMT + - Wed, 13 Jan 2021 01:33:38 GMT expires: - '-1' odata-version: @@ -13862,17 +13919,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13880,7 +13937,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:04 GMT + - Wed, 13 Jan 2021 01:33:40 GMT expires: - '-1' odata-version: @@ -13915,17 +13972,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13933,7 +13990,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:06 GMT + - Wed, 13 Jan 2021 01:33:42 GMT expires: - '-1' odata-version: @@ -13968,17 +14025,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13986,7 +14043,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:09 GMT + - Wed, 13 Jan 2021 01:33:44 GMT expires: - '-1' odata-version: @@ -14021,17 +14078,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14039,7 +14096,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:11 GMT + - Wed, 13 Jan 2021 01:33:46 GMT expires: - '-1' odata-version: @@ -14074,17 +14131,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14092,7 +14149,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:13 GMT + - Wed, 13 Jan 2021 01:33:48 GMT expires: - '-1' odata-version: @@ -14127,17 +14184,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14145,7 +14202,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:15 GMT + - Wed, 13 Jan 2021 01:33:51 GMT expires: - '-1' odata-version: @@ -14180,17 +14237,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14198,7 +14255,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:17 GMT + - Wed, 13 Jan 2021 01:33:53 GMT expires: - '-1' odata-version: @@ -14233,17 +14290,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14251,7 +14308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:19 GMT + - Wed, 13 Jan 2021 01:33:55 GMT expires: - '-1' odata-version: @@ -14286,17 +14343,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14304,7 +14361,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:21 GMT + - Wed, 13 Jan 2021 01:33:57 GMT expires: - '-1' odata-version: @@ -14339,17 +14396,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14357,7 +14414,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:23 GMT + - Wed, 13 Jan 2021 01:33:59 GMT expires: - '-1' odata-version: @@ -14392,17 +14449,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14410,7 +14467,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:25 GMT + - Wed, 13 Jan 2021 01:34:01 GMT expires: - '-1' odata-version: @@ -14445,17 +14502,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14463,7 +14520,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Wed, 13 Jan 2021 01:34:03 GMT expires: - '-1' odata-version: @@ -14498,17 +14555,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14516,7 +14573,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:30 GMT + - Wed, 13 Jan 2021 01:34:05 GMT expires: - '-1' odata-version: @@ -14551,17 +14608,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14569,7 +14626,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:32 GMT + - Wed, 13 Jan 2021 01:34:07 GMT expires: - '-1' odata-version: @@ -14604,17 +14661,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14622,7 +14679,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:34 GMT + - Wed, 13 Jan 2021 01:34:09 GMT expires: - '-1' odata-version: @@ -14657,17 +14714,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14675,7 +14732,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:36 GMT + - Wed, 13 Jan 2021 01:34:12 GMT expires: - '-1' odata-version: @@ -14710,17 +14767,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14728,7 +14785,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:38 GMT + - Wed, 13 Jan 2021 01:34:14 GMT expires: - '-1' odata-version: @@ -14763,17 +14820,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14781,7 +14838,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:40 GMT + - Wed, 13 Jan 2021 01:34:16 GMT expires: - '-1' odata-version: @@ -14816,17 +14873,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14834,7 +14891,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:42 GMT + - Wed, 13 Jan 2021 01:34:18 GMT expires: - '-1' odata-version: @@ -14869,17 +14926,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14887,7 +14944,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:45 GMT + - Wed, 13 Jan 2021 01:34:20 GMT expires: - '-1' odata-version: @@ -14922,17 +14979,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14940,7 +14997,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:47 GMT + - Wed, 13 Jan 2021 01:34:22 GMT expires: - '-1' odata-version: @@ -14975,17 +15032,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14993,7 +15050,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:49 GMT + - Wed, 13 Jan 2021 01:34:24 GMT expires: - '-1' odata-version: @@ -15028,17 +15085,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15046,7 +15103,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:51 GMT + - Wed, 13 Jan 2021 01:34:26 GMT expires: - '-1' odata-version: @@ -15081,17 +15138,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15099,7 +15156,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:53 GMT + - Wed, 13 Jan 2021 01:34:28 GMT expires: - '-1' odata-version: @@ -15134,17 +15191,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15152,7 +15209,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:55 GMT + - Wed, 13 Jan 2021 01:34:31 GMT expires: - '-1' odata-version: @@ -15187,17 +15244,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15205,7 +15262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:57 GMT + - Wed, 13 Jan 2021 01:34:33 GMT expires: - '-1' odata-version: @@ -15240,17 +15297,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15258,7 +15315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:59 GMT + - Wed, 13 Jan 2021 01:34:35 GMT expires: - '-1' odata-version: @@ -15293,17 +15350,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15311,7 +15368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:02 GMT + - Wed, 13 Jan 2021 01:34:37 GMT expires: - '-1' odata-version: @@ -15346,17 +15403,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15364,7 +15421,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:04 GMT + - Wed, 13 Jan 2021 01:34:39 GMT expires: - '-1' odata-version: @@ -15399,17 +15456,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15417,7 +15474,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:06 GMT + - Wed, 13 Jan 2021 01:34:41 GMT expires: - '-1' odata-version: @@ -15452,17 +15509,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15470,7 +15527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:08 GMT + - Wed, 13 Jan 2021 01:34:43 GMT expires: - '-1' odata-version: @@ -15505,17 +15562,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15523,7 +15580,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:10 GMT + - Wed, 13 Jan 2021 01:34:45 GMT expires: - '-1' odata-version: @@ -15558,17 +15615,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15576,7 +15633,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:12 GMT + - Wed, 13 Jan 2021 01:34:47 GMT expires: - '-1' odata-version: @@ -15611,17 +15668,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15629,7 +15686,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:14 GMT + - Wed, 13 Jan 2021 01:34:50 GMT expires: - '-1' odata-version: @@ -15664,17 +15721,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15682,7 +15739,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:16 GMT + - Wed, 13 Jan 2021 01:34:52 GMT expires: - '-1' odata-version: @@ -15717,17 +15774,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15735,7 +15792,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:18 GMT + - Wed, 13 Jan 2021 01:34:55 GMT expires: - '-1' odata-version: @@ -15770,17 +15827,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15788,7 +15845,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:21 GMT + - Wed, 13 Jan 2021 01:34:57 GMT expires: - '-1' odata-version: @@ -15823,17 +15880,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15841,7 +15898,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:23 GMT + - Wed, 13 Jan 2021 01:34:59 GMT expires: - '-1' odata-version: @@ -15876,17 +15933,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15894,7 +15951,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:25 GMT + - Wed, 13 Jan 2021 01:35:01 GMT expires: - '-1' odata-version: @@ -15929,17 +15986,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15947,7 +16004,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:27 GMT + - Wed, 13 Jan 2021 01:35:03 GMT expires: - '-1' odata-version: @@ -15982,17 +16039,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16000,7 +16057,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:29 GMT + - Wed, 13 Jan 2021 01:35:05 GMT expires: - '-1' odata-version: @@ -16035,17 +16092,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16053,7 +16110,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Wed, 13 Jan 2021 01:35:07 GMT expires: - '-1' odata-version: @@ -16088,17 +16145,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16106,7 +16163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:34 GMT + - Wed, 13 Jan 2021 01:35:10 GMT expires: - '-1' odata-version: @@ -16141,17 +16198,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16159,7 +16216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:36 GMT + - Wed, 13 Jan 2021 01:35:12 GMT expires: - '-1' odata-version: @@ -16194,17 +16251,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16212,7 +16269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:38 GMT + - Wed, 13 Jan 2021 01:35:14 GMT expires: - '-1' odata-version: @@ -16247,17 +16304,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16265,7 +16322,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Wed, 13 Jan 2021 01:35:16 GMT expires: - '-1' odata-version: @@ -16300,17 +16357,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16318,7 +16375,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:43 GMT + - Wed, 13 Jan 2021 01:35:18 GMT expires: - '-1' odata-version: @@ -16353,17 +16410,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16371,7 +16428,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:45 GMT + - Wed, 13 Jan 2021 01:35:20 GMT expires: - '-1' odata-version: @@ -16406,17 +16463,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16424,7 +16481,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:47 GMT + - Wed, 13 Jan 2021 01:35:22 GMT expires: - '-1' odata-version: @@ -16459,17 +16516,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16477,7 +16534,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:49 GMT + - Wed, 13 Jan 2021 01:35:24 GMT expires: - '-1' odata-version: @@ -16512,17 +16569,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16530,7 +16587,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Wed, 13 Jan 2021 01:35:27 GMT expires: - '-1' odata-version: @@ -16565,17 +16622,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16583,7 +16640,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Wed, 13 Jan 2021 01:35:29 GMT expires: - '-1' odata-version: @@ -16618,17 +16675,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16636,7 +16693,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:55 GMT + - Wed, 13 Jan 2021 01:35:31 GMT expires: - '-1' odata-version: @@ -16671,17 +16728,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16689,7 +16746,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:58 GMT + - Wed, 13 Jan 2021 01:35:33 GMT expires: - '-1' odata-version: @@ -16724,17 +16781,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16742,7 +16799,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Wed, 13 Jan 2021 01:35:35 GMT expires: - '-1' odata-version: @@ -16777,17 +16834,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16795,7 +16852,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Wed, 13 Jan 2021 01:35:37 GMT expires: - '-1' odata-version: @@ -16830,17 +16887,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16848,7 +16905,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Wed, 13 Jan 2021 01:35:39 GMT expires: - '-1' odata-version: @@ -16883,17 +16940,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16901,7 +16958,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:06 GMT + - Wed, 13 Jan 2021 01:35:41 GMT expires: - '-1' odata-version: @@ -16936,17 +16993,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16954,7 +17011,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:08 GMT + - Wed, 13 Jan 2021 01:35:44 GMT expires: - '-1' odata-version: @@ -16989,17 +17046,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17007,7 +17064,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:10 GMT + - Wed, 13 Jan 2021 01:35:46 GMT expires: - '-1' odata-version: @@ -17042,17 +17099,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17060,7 +17117,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:12 GMT + - Wed, 13 Jan 2021 01:35:48 GMT expires: - '-1' odata-version: @@ -17095,17 +17152,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17113,7 +17170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:14 GMT + - Wed, 13 Jan 2021 01:35:50 GMT expires: - '-1' odata-version: @@ -17148,17 +17205,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17166,7 +17223,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:17 GMT + - Wed, 13 Jan 2021 01:35:52 GMT expires: - '-1' odata-version: @@ -17201,17 +17258,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17219,7 +17276,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:19 GMT + - Wed, 13 Jan 2021 01:35:54 GMT expires: - '-1' odata-version: @@ -17254,17 +17311,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17272,7 +17329,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:21 GMT + - Wed, 13 Jan 2021 01:35:56 GMT expires: - '-1' odata-version: @@ -17307,17 +17364,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17325,7 +17382,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Wed, 13 Jan 2021 01:35:58 GMT expires: - '-1' odata-version: @@ -17360,17 +17417,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17378,7 +17435,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Wed, 13 Jan 2021 01:36:00 GMT expires: - '-1' odata-version: @@ -17413,17 +17470,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17431,7 +17488,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Wed, 13 Jan 2021 01:36:03 GMT expires: - '-1' odata-version: @@ -17466,17 +17523,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17484,7 +17541,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Wed, 13 Jan 2021 01:36:05 GMT expires: - '-1' odata-version: @@ -17519,17 +17576,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17537,7 +17594,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:31 GMT + - Wed, 13 Jan 2021 01:36:07 GMT expires: - '-1' odata-version: @@ -17572,17 +17629,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17590,7 +17647,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Wed, 13 Jan 2021 01:36:09 GMT expires: - '-1' odata-version: @@ -17625,17 +17682,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17643,7 +17700,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Wed, 13 Jan 2021 01:36:11 GMT expires: - '-1' odata-version: @@ -17678,17 +17735,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17696,7 +17753,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:38 GMT + - Wed, 13 Jan 2021 01:36:13 GMT expires: - '-1' odata-version: @@ -17731,17 +17788,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17749,7 +17806,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:40 GMT + - Wed, 13 Jan 2021 01:36:15 GMT expires: - '-1' odata-version: @@ -17784,17 +17841,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17802,7 +17859,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:42 GMT + - Wed, 13 Jan 2021 01:36:17 GMT expires: - '-1' odata-version: @@ -17837,17 +17894,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17855,7 +17912,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:44 GMT + - Wed, 13 Jan 2021 01:36:19 GMT expires: - '-1' odata-version: @@ -17890,17 +17947,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17908,7 +17965,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:47 GMT + - Wed, 13 Jan 2021 01:36:22 GMT expires: - '-1' odata-version: @@ -17943,17 +18000,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17961,7 +18018,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:49 GMT + - Wed, 13 Jan 2021 01:36:24 GMT expires: - '-1' odata-version: @@ -17996,17 +18053,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18014,7 +18071,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:51 GMT + - Wed, 13 Jan 2021 01:36:26 GMT expires: - '-1' odata-version: @@ -18049,17 +18106,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18067,7 +18124,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:53 GMT + - Wed, 13 Jan 2021 01:36:28 GMT expires: - '-1' odata-version: @@ -18102,17 +18159,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18120,7 +18177,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:55 GMT + - Wed, 13 Jan 2021 01:36:30 GMT expires: - '-1' odata-version: @@ -18155,17 +18212,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18173,7 +18230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:57 GMT + - Wed, 13 Jan 2021 01:36:32 GMT expires: - '-1' odata-version: @@ -18208,17 +18265,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18226,7 +18283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:59 GMT + - Wed, 13 Jan 2021 01:36:34 GMT expires: - '-1' odata-version: @@ -18261,17 +18318,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18279,7 +18336,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:01 GMT + - Wed, 13 Jan 2021 01:36:36 GMT expires: - '-1' odata-version: @@ -18314,17 +18371,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18332,7 +18389,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:03 GMT + - Wed, 13 Jan 2021 01:36:39 GMT expires: - '-1' odata-version: @@ -18367,17 +18424,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18385,7 +18442,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:06 GMT + - Wed, 13 Jan 2021 01:36:41 GMT expires: - '-1' odata-version: @@ -18420,17 +18477,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18438,7 +18495,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:08 GMT + - Wed, 13 Jan 2021 01:36:43 GMT expires: - '-1' odata-version: @@ -18473,17 +18530,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18491,7 +18548,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:10 GMT + - Wed, 13 Jan 2021 01:36:45 GMT expires: - '-1' odata-version: @@ -18526,17 +18583,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18544,7 +18601,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:12 GMT + - Wed, 13 Jan 2021 01:36:47 GMT expires: - '-1' odata-version: @@ -18579,17 +18636,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18597,7 +18654,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:14 GMT + - Wed, 13 Jan 2021 01:36:49 GMT expires: - '-1' odata-version: @@ -18632,17 +18689,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18650,7 +18707,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:16 GMT + - Wed, 13 Jan 2021 01:36:52 GMT expires: - '-1' odata-version: @@ -18685,17 +18742,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18703,7 +18760,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Wed, 13 Jan 2021 01:36:54 GMT expires: - '-1' odata-version: @@ -18738,17 +18795,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18756,7 +18813,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Wed, 13 Jan 2021 01:36:56 GMT expires: - '-1' odata-version: @@ -18791,17 +18848,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18809,7 +18866,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:23 GMT + - Wed, 13 Jan 2021 01:36:58 GMT expires: - '-1' odata-version: @@ -18844,17 +18901,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18862,7 +18919,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:25 GMT + - Wed, 13 Jan 2021 01:37:00 GMT expires: - '-1' odata-version: @@ -18897,17 +18954,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18915,7 +18972,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:27 GMT + - Wed, 13 Jan 2021 01:37:02 GMT expires: - '-1' odata-version: @@ -18950,17 +19007,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18968,7 +19025,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:29 GMT + - Wed, 13 Jan 2021 01:37:04 GMT expires: - '-1' odata-version: @@ -19003,17 +19060,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19021,7 +19078,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:31 GMT + - Wed, 13 Jan 2021 01:37:07 GMT expires: - '-1' odata-version: @@ -19056,17 +19113,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19074,7 +19131,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:33 GMT + - Wed, 13 Jan 2021 01:37:09 GMT expires: - '-1' odata-version: @@ -19109,17 +19166,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19127,7 +19184,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:35 GMT + - Wed, 13 Jan 2021 01:37:11 GMT expires: - '-1' odata-version: @@ -19162,17 +19219,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19180,7 +19237,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:37 GMT + - Wed, 13 Jan 2021 01:37:13 GMT expires: - '-1' odata-version: @@ -19215,17 +19272,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19233,7 +19290,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:39 GMT + - Wed, 13 Jan 2021 01:37:15 GMT expires: - '-1' odata-version: @@ -19268,17 +19325,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19286,7 +19343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:42 GMT + - Wed, 13 Jan 2021 01:37:17 GMT expires: - '-1' odata-version: @@ -19321,17 +19378,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19339,7 +19396,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:44 GMT + - Wed, 13 Jan 2021 01:37:19 GMT expires: - '-1' odata-version: @@ -19374,17 +19431,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19392,7 +19449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:46 GMT + - Wed, 13 Jan 2021 01:37:21 GMT expires: - '-1' odata-version: @@ -19427,17 +19484,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19445,7 +19502,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:48 GMT + - Wed, 13 Jan 2021 01:37:23 GMT expires: - '-1' odata-version: @@ -19480,17 +19537,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19498,7 +19555,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:50 GMT + - Wed, 13 Jan 2021 01:37:26 GMT expires: - '-1' odata-version: @@ -19533,17 +19590,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19551,7 +19608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:52 GMT + - Wed, 13 Jan 2021 01:37:28 GMT expires: - '-1' odata-version: @@ -19586,17 +19643,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19604,7 +19661,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:54 GMT + - Wed, 13 Jan 2021 01:37:30 GMT expires: - '-1' odata-version: @@ -19639,17 +19696,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19657,7 +19714,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Wed, 13 Jan 2021 01:37:32 GMT expires: - '-1' odata-version: @@ -19692,17 +19749,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19710,7 +19767,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:58 GMT + - Wed, 13 Jan 2021 01:37:34 GMT expires: - '-1' odata-version: @@ -19745,17 +19802,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19763,7 +19820,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:00 GMT + - Wed, 13 Jan 2021 01:37:36 GMT expires: - '-1' odata-version: @@ -19798,17 +19855,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19816,7 +19873,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:03 GMT + - Wed, 13 Jan 2021 01:37:38 GMT expires: - '-1' odata-version: @@ -19851,17 +19908,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19869,7 +19926,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:05 GMT + - Wed, 13 Jan 2021 01:37:40 GMT expires: - '-1' odata-version: @@ -19904,17 +19961,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19922,7 +19979,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:07 GMT + - Wed, 13 Jan 2021 01:37:43 GMT expires: - '-1' odata-version: @@ -19957,17 +20014,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19975,7 +20032,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:09 GMT + - Wed, 13 Jan 2021 01:37:45 GMT expires: - '-1' odata-version: @@ -20010,17 +20067,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20028,7 +20085,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:12 GMT + - Wed, 13 Jan 2021 01:37:47 GMT expires: - '-1' odata-version: @@ -20063,17 +20120,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20081,7 +20138,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:14 GMT + - Wed, 13 Jan 2021 01:37:49 GMT expires: - '-1' odata-version: @@ -20116,17 +20173,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20134,7 +20191,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:16 GMT + - Wed, 13 Jan 2021 01:37:51 GMT expires: - '-1' odata-version: @@ -20169,17 +20226,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20187,7 +20244,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:18 GMT + - Wed, 13 Jan 2021 01:37:53 GMT expires: - '-1' odata-version: @@ -20222,17 +20279,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20240,7 +20297,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:21 GMT + - Wed, 13 Jan 2021 01:37:55 GMT expires: - '-1' odata-version: @@ -20275,17 +20332,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20293,7 +20350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:23 GMT + - Wed, 13 Jan 2021 01:37:57 GMT expires: - '-1' odata-version: @@ -20328,17 +20385,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20346,7 +20403,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:25 GMT + - Wed, 13 Jan 2021 01:38:00 GMT expires: - '-1' odata-version: @@ -20381,17 +20438,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20399,7 +20456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:27 GMT + - Wed, 13 Jan 2021 01:38:02 GMT expires: - '-1' odata-version: @@ -20434,17 +20491,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20452,7 +20509,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:29 GMT + - Wed, 13 Jan 2021 01:38:04 GMT expires: - '-1' odata-version: @@ -20487,17 +20544,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20505,7 +20562,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:31 GMT + - Wed, 13 Jan 2021 01:38:06 GMT expires: - '-1' odata-version: @@ -20540,17 +20597,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20558,7 +20615,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:33 GMT + - Wed, 13 Jan 2021 01:38:08 GMT expires: - '-1' odata-version: @@ -20593,17 +20650,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20611,7 +20668,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:35 GMT + - Wed, 13 Jan 2021 01:38:10 GMT expires: - '-1' odata-version: @@ -20646,17 +20703,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20664,7 +20721,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:37 GMT + - Wed, 13 Jan 2021 01:38:12 GMT expires: - '-1' odata-version: @@ -20699,17 +20756,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20717,7 +20774,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:40 GMT + - Wed, 13 Jan 2021 01:38:15 GMT expires: - '-1' odata-version: @@ -20752,17 +20809,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20770,7 +20827,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:42 GMT + - Wed, 13 Jan 2021 01:38:18 GMT expires: - '-1' odata-version: @@ -20805,17 +20862,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20823,7 +20880,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:44 GMT + - Wed, 13 Jan 2021 01:38:20 GMT expires: - '-1' odata-version: @@ -20858,17 +20915,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20876,7 +20933,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Wed, 13 Jan 2021 01:38:22 GMT expires: - '-1' odata-version: @@ -20911,17 +20968,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20929,7 +20986,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:48 GMT + - Wed, 13 Jan 2021 01:38:24 GMT expires: - '-1' odata-version: @@ -20964,17 +21021,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20982,7 +21039,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:50 GMT + - Wed, 13 Jan 2021 01:38:26 GMT expires: - '-1' odata-version: @@ -21017,17 +21074,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21035,7 +21092,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:52 GMT + - Wed, 13 Jan 2021 01:38:28 GMT expires: - '-1' odata-version: @@ -21070,17 +21127,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21088,7 +21145,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:54 GMT + - Wed, 13 Jan 2021 01:38:30 GMT expires: - '-1' odata-version: @@ -21123,17 +21180,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21141,7 +21198,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:56 GMT + - Wed, 13 Jan 2021 01:38:32 GMT expires: - '-1' odata-version: @@ -21176,17 +21233,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21194,7 +21251,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Wed, 13 Jan 2021 01:38:35 GMT expires: - '-1' odata-version: @@ -21229,17 +21286,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21247,7 +21304,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:01 GMT + - Wed, 13 Jan 2021 01:38:37 GMT expires: - '-1' odata-version: @@ -21282,17 +21339,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21300,7 +21357,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:03 GMT + - Wed, 13 Jan 2021 01:38:39 GMT expires: - '-1' odata-version: @@ -21335,17 +21392,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21353,7 +21410,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:05 GMT + - Wed, 13 Jan 2021 01:38:41 GMT expires: - '-1' odata-version: @@ -21388,17 +21445,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21406,7 +21463,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:07 GMT + - Wed, 13 Jan 2021 01:38:43 GMT expires: - '-1' odata-version: @@ -21441,17 +21498,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21459,7 +21516,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:09 GMT + - Wed, 13 Jan 2021 01:38:45 GMT expires: - '-1' odata-version: @@ -21494,17 +21551,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21512,7 +21569,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:11 GMT + - Wed, 13 Jan 2021 01:38:47 GMT expires: - '-1' odata-version: @@ -21547,17 +21604,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21565,7 +21622,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:13 GMT + - Wed, 13 Jan 2021 01:38:49 GMT expires: - '-1' odata-version: @@ -21600,17 +21657,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21618,7 +21675,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:15 GMT + - Wed, 13 Jan 2021 01:38:52 GMT expires: - '-1' odata-version: @@ -21653,17 +21710,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21671,7 +21728,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Wed, 13 Jan 2021 01:38:54 GMT expires: - '-1' odata-version: @@ -21706,17 +21763,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21724,7 +21781,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:20 GMT + - Wed, 13 Jan 2021 01:38:56 GMT expires: - '-1' odata-version: @@ -21759,17 +21816,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21777,7 +21834,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:22 GMT + - Wed, 13 Jan 2021 01:38:58 GMT expires: - '-1' odata-version: @@ -21812,17 +21869,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21830,7 +21887,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:24 GMT + - Wed, 13 Jan 2021 01:39:00 GMT expires: - '-1' odata-version: @@ -21865,17 +21922,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21883,7 +21940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:26 GMT + - Wed, 13 Jan 2021 01:39:02 GMT expires: - '-1' odata-version: @@ -21918,17 +21975,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21936,7 +21993,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:28 GMT + - Wed, 13 Jan 2021 01:39:04 GMT expires: - '-1' odata-version: @@ -21971,17 +22028,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21989,7 +22046,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:30 GMT + - Wed, 13 Jan 2021 01:39:06 GMT expires: - '-1' odata-version: @@ -22024,17 +22081,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22042,7 +22099,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:32 GMT + - Wed, 13 Jan 2021 01:39:09 GMT expires: - '-1' odata-version: @@ -22077,17 +22134,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22095,7 +22152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:35 GMT + - Wed, 13 Jan 2021 01:39:11 GMT expires: - '-1' odata-version: @@ -22130,17 +22187,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22148,7 +22205,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:37 GMT + - Wed, 13 Jan 2021 01:39:13 GMT expires: - '-1' odata-version: @@ -22183,17 +22240,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22201,7 +22258,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:39 GMT + - Wed, 13 Jan 2021 01:39:15 GMT expires: - '-1' odata-version: @@ -22236,17 +22293,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22254,7 +22311,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:41 GMT + - Wed, 13 Jan 2021 01:39:17 GMT expires: - '-1' odata-version: @@ -22289,17 +22346,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22307,7 +22364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Wed, 13 Jan 2021 01:39:19 GMT expires: - '-1' odata-version: @@ -22342,17 +22399,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22360,7 +22417,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Wed, 13 Jan 2021 01:39:21 GMT expires: - '-1' odata-version: @@ -22395,17 +22452,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22413,7 +22470,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:47 GMT + - Wed, 13 Jan 2021 01:39:23 GMT expires: - '-1' odata-version: @@ -22448,17 +22505,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22466,7 +22523,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:49 GMT + - Wed, 13 Jan 2021 01:39:26 GMT expires: - '-1' odata-version: @@ -22501,17 +22558,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22519,7 +22576,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:51 GMT + - Wed, 13 Jan 2021 01:39:28 GMT expires: - '-1' odata-version: @@ -22554,17 +22611,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22572,7 +22629,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:54 GMT + - Wed, 13 Jan 2021 01:39:30 GMT expires: - '-1' odata-version: @@ -22607,17 +22664,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22625,7 +22682,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:56 GMT + - Wed, 13 Jan 2021 01:39:32 GMT expires: - '-1' odata-version: @@ -22660,17 +22717,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22678,7 +22735,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:58 GMT + - Wed, 13 Jan 2021 01:39:34 GMT expires: - '-1' odata-version: @@ -22713,17 +22770,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22731,7 +22788,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:00 GMT + - Wed, 13 Jan 2021 01:39:36 GMT expires: - '-1' odata-version: @@ -22766,17 +22823,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22784,7 +22841,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:02 GMT + - Wed, 13 Jan 2021 01:39:38 GMT expires: - '-1' odata-version: @@ -22819,17 +22876,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22837,7 +22894,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Wed, 13 Jan 2021 01:39:40 GMT expires: - '-1' odata-version: @@ -22872,17 +22929,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22890,7 +22947,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Wed, 13 Jan 2021 01:39:43 GMT expires: - '-1' odata-version: @@ -22925,17 +22982,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22943,7 +23000,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Wed, 13 Jan 2021 01:39:45 GMT expires: - '-1' odata-version: @@ -22978,17 +23035,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22996,7 +23053,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:11 GMT + - Wed, 13 Jan 2021 01:39:47 GMT expires: - '-1' odata-version: @@ -23031,17 +23088,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23049,7 +23106,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Wed, 13 Jan 2021 01:39:49 GMT expires: - '-1' odata-version: @@ -23084,17 +23141,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23102,7 +23159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Wed, 13 Jan 2021 01:39:51 GMT expires: - '-1' odata-version: @@ -23137,17 +23194,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23155,7 +23212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Wed, 13 Jan 2021 01:39:53 GMT expires: - '-1' odata-version: @@ -23190,17 +23247,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23208,7 +23265,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:19 GMT + - Wed, 13 Jan 2021 01:39:55 GMT expires: - '-1' odata-version: @@ -23243,17 +23300,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23261,7 +23318,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:21 GMT + - Wed, 13 Jan 2021 01:39:57 GMT expires: - '-1' odata-version: @@ -23296,17 +23353,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23314,7 +23371,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Wed, 13 Jan 2021 01:40:00 GMT expires: - '-1' odata-version: @@ -23349,17 +23406,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23367,7 +23424,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Wed, 13 Jan 2021 01:40:02 GMT expires: - '-1' odata-version: @@ -23402,17 +23459,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23420,7 +23477,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:28 GMT + - Wed, 13 Jan 2021 01:40:04 GMT expires: - '-1' odata-version: @@ -23455,17 +23512,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23473,7 +23530,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:31 GMT + - Wed, 13 Jan 2021 01:40:06 GMT expires: - '-1' odata-version: @@ -23508,17 +23565,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23526,7 +23583,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:33 GMT + - Wed, 13 Jan 2021 01:40:08 GMT expires: - '-1' odata-version: @@ -23561,17 +23618,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23579,7 +23636,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:35 GMT + - Wed, 13 Jan 2021 01:40:10 GMT expires: - '-1' odata-version: @@ -23614,17 +23671,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23632,7 +23689,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:37 GMT + - Wed, 13 Jan 2021 01:40:12 GMT expires: - '-1' odata-version: @@ -23667,17 +23724,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23685,7 +23742,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:39 GMT + - Wed, 13 Jan 2021 01:40:14 GMT expires: - '-1' odata-version: @@ -23720,17 +23777,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23738,7 +23795,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:41 GMT + - Wed, 13 Jan 2021 01:40:17 GMT expires: - '-1' odata-version: @@ -23773,17 +23830,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23791,7 +23848,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:43 GMT + - Wed, 13 Jan 2021 01:40:19 GMT expires: - '-1' odata-version: @@ -23826,17 +23883,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23844,7 +23901,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:45 GMT + - Wed, 13 Jan 2021 01:40:21 GMT expires: - '-1' odata-version: @@ -23879,17 +23936,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23897,7 +23954,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:48 GMT + - Wed, 13 Jan 2021 01:40:23 GMT expires: - '-1' odata-version: @@ -23932,17 +23989,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23950,7 +24007,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:50 GMT + - Wed, 13 Jan 2021 01:40:25 GMT expires: - '-1' odata-version: @@ -23985,17 +24042,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24003,7 +24060,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:52 GMT + - Wed, 13 Jan 2021 01:40:27 GMT expires: - '-1' odata-version: @@ -24038,17 +24095,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24056,7 +24113,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Wed, 13 Jan 2021 01:40:29 GMT expires: - '-1' odata-version: @@ -24091,17 +24148,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24109,7 +24166,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:56 GMT + - Wed, 13 Jan 2021 01:40:31 GMT expires: - '-1' odata-version: @@ -24144,17 +24201,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24162,7 +24219,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:58 GMT + - Wed, 13 Jan 2021 01:40:34 GMT expires: - '-1' odata-version: @@ -24197,17 +24254,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24215,7 +24272,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:00 GMT + - Wed, 13 Jan 2021 01:40:36 GMT expires: - '-1' odata-version: @@ -24250,17 +24307,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24268,7 +24325,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:02 GMT + - Wed, 13 Jan 2021 01:40:38 GMT expires: - '-1' odata-version: @@ -24303,17 +24360,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24321,7 +24378,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:05 GMT + - Wed, 13 Jan 2021 01:40:40 GMT expires: - '-1' odata-version: @@ -24356,17 +24413,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24374,7 +24431,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:07 GMT + - Wed, 13 Jan 2021 01:40:42 GMT expires: - '-1' odata-version: @@ -24409,17 +24466,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24427,7 +24484,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:09 GMT + - Wed, 13 Jan 2021 01:40:44 GMT expires: - '-1' odata-version: @@ -24462,17 +24519,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24480,7 +24537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:11 GMT + - Wed, 13 Jan 2021 01:40:46 GMT expires: - '-1' odata-version: @@ -24515,17 +24572,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24533,7 +24590,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:13 GMT + - Wed, 13 Jan 2021 01:40:48 GMT expires: - '-1' odata-version: @@ -24568,17 +24625,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24586,7 +24643,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:15 GMT + - Wed, 13 Jan 2021 01:40:51 GMT expires: - '-1' odata-version: @@ -24621,17 +24678,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24639,7 +24696,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:17 GMT + - Wed, 13 Jan 2021 01:40:53 GMT expires: - '-1' odata-version: @@ -24674,17 +24731,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24692,7 +24749,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:19 GMT + - Wed, 13 Jan 2021 01:40:55 GMT expires: - '-1' odata-version: @@ -24727,17 +24784,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24745,7 +24802,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:21 GMT + - Wed, 13 Jan 2021 01:40:57 GMT expires: - '-1' odata-version: @@ -24780,17 +24837,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24798,7 +24855,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:24 GMT + - Wed, 13 Jan 2021 01:40:59 GMT expires: - '-1' odata-version: @@ -24833,17 +24890,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24851,7 +24908,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:26 GMT + - Wed, 13 Jan 2021 01:41:02 GMT expires: - '-1' odata-version: @@ -24886,17 +24943,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24904,7 +24961,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:28 GMT + - Wed, 13 Jan 2021 01:41:04 GMT expires: - '-1' odata-version: @@ -24939,17 +24996,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24957,7 +25014,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:30 GMT + - Wed, 13 Jan 2021 01:41:06 GMT expires: - '-1' odata-version: @@ -24992,17 +25049,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25010,7 +25067,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:32 GMT + - Wed, 13 Jan 2021 01:41:08 GMT expires: - '-1' odata-version: @@ -25045,17 +25102,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25063,7 +25120,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:34 GMT + - Wed, 13 Jan 2021 01:41:10 GMT expires: - '-1' odata-version: @@ -25098,17 +25155,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25116,7 +25173,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:36 GMT + - Wed, 13 Jan 2021 01:41:12 GMT expires: - '-1' odata-version: @@ -25151,17 +25208,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25169,7 +25226,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:38 GMT + - Wed, 13 Jan 2021 01:41:14 GMT expires: - '-1' odata-version: @@ -25204,17 +25261,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25222,7 +25279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:40 GMT + - Wed, 13 Jan 2021 01:41:16 GMT expires: - '-1' odata-version: @@ -25257,17 +25314,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25275,7 +25332,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:43 GMT + - Wed, 13 Jan 2021 01:41:19 GMT expires: - '-1' odata-version: @@ -25310,17 +25367,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25328,7 +25385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:45 GMT + - Wed, 13 Jan 2021 01:41:21 GMT expires: - '-1' odata-version: @@ -25363,17 +25420,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25381,7 +25438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:47 GMT + - Wed, 13 Jan 2021 01:41:23 GMT expires: - '-1' odata-version: @@ -25416,17 +25473,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25434,7 +25491,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:49 GMT + - Wed, 13 Jan 2021 01:41:25 GMT expires: - '-1' odata-version: @@ -25469,17 +25526,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25487,7 +25544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:51 GMT + - Wed, 13 Jan 2021 01:41:27 GMT expires: - '-1' odata-version: @@ -25522,17 +25579,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25540,7 +25597,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:53 GMT + - Wed, 13 Jan 2021 01:41:29 GMT expires: - '-1' odata-version: @@ -25575,17 +25632,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25593,7 +25650,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:55 GMT + - Wed, 13 Jan 2021 01:41:31 GMT expires: - '-1' odata-version: @@ -25628,17 +25685,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25646,7 +25703,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:57 GMT + - Wed, 13 Jan 2021 01:41:34 GMT expires: - '-1' odata-version: @@ -25681,17 +25738,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25699,7 +25756,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:00 GMT + - Wed, 13 Jan 2021 01:41:37 GMT expires: - '-1' odata-version: @@ -25734,17 +25791,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25752,7 +25809,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:02 GMT + - Wed, 13 Jan 2021 01:41:39 GMT expires: - '-1' odata-version: @@ -25787,17 +25844,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25805,7 +25862,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:04 GMT + - Wed, 13 Jan 2021 01:41:41 GMT expires: - '-1' odata-version: @@ -25840,17 +25897,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25858,7 +25915,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:06 GMT + - Wed, 13 Jan 2021 01:41:43 GMT expires: - '-1' odata-version: @@ -25893,17 +25950,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25911,7 +25968,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:08 GMT + - Wed, 13 Jan 2021 01:41:45 GMT expires: - '-1' odata-version: @@ -25946,17 +26003,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25964,7 +26021,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:10 GMT + - Wed, 13 Jan 2021 01:41:47 GMT expires: - '-1' odata-version: @@ -25999,17 +26056,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26017,7 +26074,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:12 GMT + - Wed, 13 Jan 2021 01:41:49 GMT expires: - '-1' odata-version: @@ -26052,17 +26109,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26070,7 +26127,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:14 GMT + - Wed, 13 Jan 2021 01:41:51 GMT expires: - '-1' odata-version: @@ -26105,17 +26162,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26123,7 +26180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:17 GMT + - Wed, 13 Jan 2021 01:41:54 GMT expires: - '-1' odata-version: @@ -26158,17 +26215,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26176,7 +26233,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:19 GMT + - Wed, 13 Jan 2021 01:41:56 GMT expires: - '-1' odata-version: @@ -26211,17 +26268,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26229,7 +26286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:21 GMT + - Wed, 13 Jan 2021 01:41:58 GMT expires: - '-1' odata-version: @@ -26264,17 +26321,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26282,7 +26339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:23 GMT + - Wed, 13 Jan 2021 01:42:00 GMT expires: - '-1' odata-version: @@ -26317,17 +26374,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26335,7 +26392,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:25 GMT + - Wed, 13 Jan 2021 01:42:02 GMT expires: - '-1' odata-version: @@ -26370,17 +26427,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26388,7 +26445,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:27 GMT + - Wed, 13 Jan 2021 01:42:04 GMT expires: - '-1' odata-version: @@ -26423,17 +26480,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26441,7 +26498,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:30 GMT + - Wed, 13 Jan 2021 01:42:06 GMT expires: - '-1' odata-version: @@ -26476,17 +26533,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26494,7 +26551,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:32 GMT + - Wed, 13 Jan 2021 01:42:08 GMT expires: - '-1' odata-version: @@ -26529,17 +26586,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26547,7 +26604,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Wed, 13 Jan 2021 01:42:10 GMT expires: - '-1' odata-version: @@ -26582,17 +26639,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26600,7 +26657,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 GMT + - Wed, 13 Jan 2021 01:42:13 GMT expires: - '-1' odata-version: @@ -26635,17 +26692,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26653,7 +26710,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:38 GMT + - Wed, 13 Jan 2021 01:42:15 GMT expires: - '-1' odata-version: @@ -26688,17 +26745,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26706,7 +26763,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:40 GMT + - Wed, 13 Jan 2021 01:42:17 GMT expires: - '-1' odata-version: @@ -26741,17 +26798,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26759,7 +26816,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:42 GMT + - Wed, 13 Jan 2021 01:42:19 GMT expires: - '-1' odata-version: @@ -26794,17 +26851,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26812,7 +26869,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:44 GMT + - Wed, 13 Jan 2021 01:42:21 GMT expires: - '-1' odata-version: @@ -26847,17 +26904,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26865,7 +26922,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:47 GMT + - Wed, 13 Jan 2021 01:42:23 GMT expires: - '-1' odata-version: @@ -26900,17 +26957,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26918,7 +26975,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:49 GMT + - Wed, 13 Jan 2021 01:42:25 GMT expires: - '-1' odata-version: @@ -26953,17 +27010,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26971,7 +27028,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:51 GMT + - Wed, 13 Jan 2021 01:42:28 GMT expires: - '-1' odata-version: @@ -27006,17 +27063,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27024,7 +27081,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:53 GMT + - Wed, 13 Jan 2021 01:42:30 GMT expires: - '-1' odata-version: @@ -27059,17 +27116,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27077,7 +27134,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:55 GMT + - Wed, 13 Jan 2021 01:42:32 GMT expires: - '-1' odata-version: @@ -27112,17 +27169,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27130,7 +27187,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:57 GMT + - Wed, 13 Jan 2021 01:42:34 GMT expires: - '-1' odata-version: @@ -27165,17 +27222,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27183,7 +27240,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:59 GMT + - Wed, 13 Jan 2021 01:42:36 GMT expires: - '-1' odata-version: @@ -27218,17 +27275,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27236,7 +27293,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:02 GMT + - Wed, 13 Jan 2021 01:42:38 GMT expires: - '-1' odata-version: @@ -27271,17 +27328,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27289,7 +27346,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:04 GMT + - Wed, 13 Jan 2021 01:42:40 GMT expires: - '-1' odata-version: @@ -27324,17 +27381,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27342,7 +27399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:06 GMT + - Wed, 13 Jan 2021 01:42:42 GMT expires: - '-1' odata-version: @@ -27377,17 +27434,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27395,7 +27452,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:08 GMT + - Wed, 13 Jan 2021 01:42:44 GMT expires: - '-1' odata-version: @@ -27430,17 +27487,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27448,7 +27505,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:11 GMT + - Wed, 13 Jan 2021 01:42:47 GMT expires: - '-1' odata-version: @@ -27483,17 +27540,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27501,7 +27558,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:13 GMT + - Wed, 13 Jan 2021 01:42:49 GMT expires: - '-1' odata-version: @@ -27536,17 +27593,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27554,7 +27611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:15 GMT + - Wed, 13 Jan 2021 01:42:51 GMT expires: - '-1' odata-version: @@ -27589,17 +27646,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27607,7 +27664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:17 GMT + - Wed, 13 Jan 2021 01:42:53 GMT expires: - '-1' odata-version: @@ -27642,17 +27699,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27660,7 +27717,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:19 GMT + - Wed, 13 Jan 2021 01:42:55 GMT expires: - '-1' odata-version: @@ -27695,17 +27752,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27713,7 +27770,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:22 GMT + - Wed, 13 Jan 2021 01:42:57 GMT expires: - '-1' odata-version: @@ -27748,17 +27805,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27766,7 +27823,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:24 GMT + - Wed, 13 Jan 2021 01:42:59 GMT expires: - '-1' odata-version: @@ -27801,17 +27858,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27819,7 +27876,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:26 GMT + - Wed, 13 Jan 2021 01:43:01 GMT expires: - '-1' odata-version: @@ -27854,17 +27911,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27872,7 +27929,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:28 GMT + - Wed, 13 Jan 2021 01:43:04 GMT expires: - '-1' odata-version: @@ -27907,17 +27964,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27925,7 +27982,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:30 GMT + - Wed, 13 Jan 2021 01:43:06 GMT expires: - '-1' odata-version: @@ -27960,17 +28017,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27978,7 +28035,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:32 GMT + - Wed, 13 Jan 2021 01:43:08 GMT expires: - '-1' odata-version: @@ -28013,17 +28070,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28031,7 +28088,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:34 GMT + - Wed, 13 Jan 2021 01:43:10 GMT expires: - '-1' odata-version: @@ -28066,17 +28123,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28084,7 +28141,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:36 GMT + - Wed, 13 Jan 2021 01:43:12 GMT expires: - '-1' odata-version: @@ -28119,17 +28176,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28137,7 +28194,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:38 GMT + - Wed, 13 Jan 2021 01:43:14 GMT expires: - '-1' odata-version: @@ -28172,17 +28229,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28190,7 +28247,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:41 GMT + - Wed, 13 Jan 2021 01:43:16 GMT expires: - '-1' odata-version: @@ -28225,17 +28282,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28243,7 +28300,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:43 GMT + - Wed, 13 Jan 2021 01:43:18 GMT expires: - '-1' odata-version: @@ -28278,17 +28335,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28296,7 +28353,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:45 GMT + - Wed, 13 Jan 2021 01:43:20 GMT expires: - '-1' odata-version: @@ -28331,17 +28388,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28349,7 +28406,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:47 GMT + - Wed, 13 Jan 2021 01:43:23 GMT expires: - '-1' odata-version: @@ -28384,17 +28441,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28402,7 +28459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:49 GMT + - Wed, 13 Jan 2021 01:43:25 GMT expires: - '-1' odata-version: @@ -28437,17 +28494,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28455,7 +28512,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:51 GMT + - Wed, 13 Jan 2021 01:43:27 GMT expires: - '-1' odata-version: @@ -28490,17 +28547,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28508,7 +28565,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:53 GMT + - Wed, 13 Jan 2021 01:43:29 GMT expires: - '-1' odata-version: @@ -28543,17 +28600,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28561,7 +28618,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:55 GMT + - Wed, 13 Jan 2021 01:43:31 GMT expires: - '-1' odata-version: @@ -28596,17 +28653,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28614,7 +28671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:57 GMT + - Wed, 13 Jan 2021 01:43:33 GMT expires: - '-1' odata-version: @@ -28649,17 +28706,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28667,7 +28724,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:00 GMT + - Wed, 13 Jan 2021 01:43:35 GMT expires: - '-1' odata-version: @@ -28702,17 +28759,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28720,7 +28777,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:02 GMT + - Wed, 13 Jan 2021 01:43:37 GMT expires: - '-1' odata-version: @@ -28755,17 +28812,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28773,7 +28830,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:04 GMT + - Wed, 13 Jan 2021 01:43:40 GMT expires: - '-1' odata-version: @@ -28808,17 +28865,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28826,7 +28883,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:06 GMT + - Wed, 13 Jan 2021 01:43:42 GMT expires: - '-1' odata-version: @@ -28861,17 +28918,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28879,7 +28936,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:08 GMT + - Wed, 13 Jan 2021 01:43:44 GMT expires: - '-1' odata-version: @@ -28914,17 +28971,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28932,7 +28989,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:10 GMT + - Wed, 13 Jan 2021 01:43:46 GMT expires: - '-1' odata-version: @@ -28967,17 +29024,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28985,7 +29042,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:12 GMT + - Wed, 13 Jan 2021 01:43:48 GMT expires: - '-1' odata-version: @@ -29020,17 +29077,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29038,7 +29095,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:14 GMT + - Wed, 13 Jan 2021 01:43:50 GMT expires: - '-1' odata-version: @@ -29073,17 +29130,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29091,7 +29148,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:17 GMT + - Wed, 13 Jan 2021 01:43:52 GMT expires: - '-1' odata-version: @@ -29126,17 +29183,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29144,7 +29201,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:19 GMT + - Wed, 13 Jan 2021 01:43:54 GMT expires: - '-1' odata-version: @@ -29179,17 +29236,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29197,7 +29254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:21 GMT + - Wed, 13 Jan 2021 01:43:56 GMT expires: - '-1' odata-version: @@ -29232,17 +29289,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29250,7 +29307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:23 GMT + - Wed, 13 Jan 2021 01:43:59 GMT expires: - '-1' odata-version: @@ -29285,17 +29342,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29303,7 +29360,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:25 GMT + - Wed, 13 Jan 2021 01:44:01 GMT expires: - '-1' odata-version: @@ -29338,17 +29395,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29356,7 +29413,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:27 GMT + - Wed, 13 Jan 2021 01:44:04 GMT expires: - '-1' odata-version: @@ -29391,17 +29448,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29409,7 +29466,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:29 GMT + - Wed, 13 Jan 2021 01:44:06 GMT expires: - '-1' odata-version: @@ -29444,17 +29501,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29462,7 +29519,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:31 GMT + - Wed, 13 Jan 2021 01:44:08 GMT expires: - '-1' odata-version: @@ -29497,17 +29554,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29515,7 +29572,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:33 GMT + - Wed, 13 Jan 2021 01:44:10 GMT expires: - '-1' odata-version: @@ -29550,17 +29607,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29568,7 +29625,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:36 GMT + - Wed, 13 Jan 2021 01:44:12 GMT expires: - '-1' odata-version: @@ -29603,17 +29660,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29621,7 +29678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:38 GMT + - Wed, 13 Jan 2021 01:44:14 GMT expires: - '-1' odata-version: @@ -29656,17 +29713,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29674,7 +29731,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:40 GMT + - Wed, 13 Jan 2021 01:44:16 GMT expires: - '-1' odata-version: @@ -29709,17 +29766,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29727,7 +29784,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:42 GMT + - Wed, 13 Jan 2021 01:44:18 GMT expires: - '-1' odata-version: @@ -29762,17 +29819,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29780,7 +29837,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:44 GMT + - Wed, 13 Jan 2021 01:44:21 GMT expires: - '-1' odata-version: @@ -29815,17 +29872,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29833,7 +29890,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:46 GMT + - Wed, 13 Jan 2021 01:44:23 GMT expires: - '-1' odata-version: @@ -29868,17 +29925,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29886,7 +29943,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:48 GMT + - Wed, 13 Jan 2021 01:44:25 GMT expires: - '-1' odata-version: @@ -29921,17 +29978,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29939,7 +29996,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:50 GMT + - Wed, 13 Jan 2021 01:44:27 GMT expires: - '-1' odata-version: @@ -29974,17 +30031,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29992,7 +30049,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:53 GMT + - Wed, 13 Jan 2021 01:44:29 GMT expires: - '-1' odata-version: @@ -30027,17 +30084,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30045,7 +30102,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:55 GMT + - Wed, 13 Jan 2021 01:44:31 GMT expires: - '-1' odata-version: @@ -30080,17 +30137,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30098,7 +30155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:57 GMT + - Wed, 13 Jan 2021 01:44:33 GMT expires: - '-1' odata-version: @@ -30133,17 +30190,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30151,7 +30208,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:59 GMT + - Wed, 13 Jan 2021 01:44:35 GMT expires: - '-1' odata-version: @@ -30186,17 +30243,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30204,7 +30261,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:01 GMT + - Wed, 13 Jan 2021 01:44:37 GMT expires: - '-1' odata-version: @@ -30239,17 +30296,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30257,7 +30314,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:03 GMT + - Wed, 13 Jan 2021 01:44:40 GMT expires: - '-1' odata-version: @@ -30292,17 +30349,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30310,7 +30367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:05 GMT + - Wed, 13 Jan 2021 01:44:42 GMT expires: - '-1' odata-version: @@ -30345,17 +30402,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30363,7 +30420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:07 GMT + - Wed, 13 Jan 2021 01:44:44 GMT expires: - '-1' odata-version: @@ -30398,14 +30455,14 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2020-09-25T21:44:50.5460303Z\",\"lastModified\":\"2020-09-25T22:05:08.4080734Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:23.3396525Z\",\"lastModified\":\"2021-01-13T01:44:43.0884102Z\"\r\n \ }\r\n}" headers: cache-control: @@ -30415,7 +30472,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:08 GMT + - Wed, 13 Jan 2021 01:44:44 GMT expires: - '-1' odata-version: @@ -30452,27 +30509,27 @@ interactions: - -g -a -n --no-wait User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/stop?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004/stop?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7fbf3a66-b9b7-41e3-9a72-6eda6d32681c?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/797343e2-3602-4683-ab2a-6960844bfb60?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 22:05:10 GMT + - Wed, 13 Jan 2021 01:44:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/7fbf3a66-b9b7-41e3-9a72-6eda6d32681c?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/797343e2-3602-4683-ab2a-6960844bfb60?api-version=2020-05-01 pragma: - no-cache server: @@ -30501,26 +30558,26 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopping\",\"created\":\"2020-09-25T21:44:50.5460303Z\",\"lastModified\":\"2020-09-25T22:05:10.5846231Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopping\",\"created\":\"2021-01-13T01:24:23.3396525Z\",\"lastModified\":\"2021-01-13T01:44:46.521382Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '870' + - '869' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:11 GMT + - Wed, 13 Jan 2021 01:44:46 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml index fd7166bd079..848e47764d8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,1191 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"8ca8cfd3-44aa-48e8-8255-30f272810680\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"3b5d960b-a459-4564-a873-c5add1ce6379\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '670' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:36 GMT - expires: - - '-1' - odata-version: - - '4.0' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"8ca8cfd3-44aa-48e8-8255-30f272810680\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '670' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:37 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: '{"tags": {"foo": "bar"}, "location": "Australia East", "properties": {"description": - "test streaming description", "scaleUnits": 5, "accessControl": {}, "maxCacheAge": - 11, "cdnEnabled": true, "cdnProvider": "StandardVerizon", "cdnProfile": "testProfile", - "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n \r\n - \r\n \r\n \r\n \r\n \r\n \r\n", - "crossDomainPolicy": "\r\n\r\n\r\n \r\n"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - Content-Length: - - '983' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia - East\",\"tags\":{\r\n \"foo\":\"bar\"\r\n },\"properties\":{\r\n \"description\":\"test - streaming description\",\"scaleUnits\":5,\"availabilitySetName\":null,\"cdnEnabled\":true,\"cdnProvider\":\"StandardVerizon\",\"cdnProfile\":\"testProfile\",\"maxCacheAge\":11,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n - \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n - \ \\r\\n \\r\\n - \ \\r\\n - \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.5459114Z\",\"lastModified\":\"2020-09-25T21:44:40.5459114Z\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '1669' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - odata-version: - - '4.0' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:44 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:46 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:48 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:50 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:53 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:55 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:57 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:44:59 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:01 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:03 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:06 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:08 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:10 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:12 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:14 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:17 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:19 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:21 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units - --tags --client-access-policy --cross-domain-policy - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n \ }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 cache-control: - no-cache content-length: - - '172' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:23 GMT + - Wed, 13 Jan 2021 01:24:55 GMT expires: - '-1' odata-version: @@ -1208,15 +52,13 @@ 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-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1233,25 +75,28 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia + East\",\"properties\":{\r\n \"mediaServiceId\":\"3b5d960b-a459-4564-a873-c5add1ce6379\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n \ }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 cache-control: - no-cache content-length: - - '172' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:25 GMT + - Wed, 13 Jan 2021 01:24:56 GMT expires: - '-1' odata-version: @@ -1272,7 +117,16 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"tags": {"foo": "bar"}, "location": "Australia East", "properties": {"description": + "test streaming description", "scaleUnits": 5, "accessControl": {}, "maxCacheAge": + 11, "cdnEnabled": true, "cdnProvider": "StandardVerizon", "cdnProfile": "testProfile", + "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n \r\n + \r\n \r\n \r\n \r\n \r\n \r\n", + "crossDomainPolicy": "\r\n\r\n\r\n \r\n"}}}' headers: Accept: - application/json @@ -1282,32 +136,50 @@ interactions: - ams streaming-endpoint create Connection: - keep-alive + Content-Length: + - '983' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia + East\",\"tags\":{\r\n \"foo\":\"bar\"\r\n },\"properties\":{\r\n \"description\":\"test + streaming description\",\"scaleUnits\":5,\"availabilitySetName\":null,\"cdnEnabled\":true,\"cdnProvider\":\"StandardVerizon\",\"cdnProfile\":\"testProfile\",\"maxCacheAge\":11,\"customHostNames\":[\r\n + \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n + \ \\r\\n \\r\\n + \ \\r\\n + \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.8763938Z\",\"lastModified\":\"2021-01-13T01:24:58.8763938Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' + - '1669' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:27 GMT + - Wed, 13 Jan 2021 01:24:58 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -1316,15 +188,13 @@ 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-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1341,17 +211,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + string: "{\r\n \"name\":\"52f4f4b2-7bb6-466e-a6cf-65f0846972ab\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1359,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:30 GMT + - Wed, 13 Jan 2021 01:25:02 GMT expires: - '-1' odata-version: @@ -1395,17 +265,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6947913-0cc6-46e2-90a7-907647cdf5df\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + string: "{\r\n \"name\":\"52f4f4b2-7bb6-466e-a6cf-65f0846972ab\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c6947913-0cc6-46e2-90a7-907647cdf5df?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1413,7 +283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:32 GMT + - Wed, 13 Jan 2021 01:25:04 GMT expires: - '-1' odata-version: @@ -1449,9 +319,9 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1464,7 +334,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.577069Z\",\"lastModified\":\"2020-09-25T21:45:31.6794623Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n \ }\r\n}" headers: cache-control: @@ -1474,7 +344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:32 GMT + - Wed, 13 Jan 2021 01:25:04 GMT expires: - '-1' odata-version: @@ -1509,11 +379,11 @@ interactions: - -g -a -n --add User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1526,7 +396,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.577069Z\",\"lastModified\":\"2020-09-25T21:45:31.6794623Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n \ }\r\n}" headers: cache-control: @@ -1536,7 +406,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:33 GMT + - Wed, 13 Jan 2021 01:25:05 GMT expires: - '-1' odata-version: @@ -1572,11 +442,11 @@ interactions: --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1589,7 +459,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.577069Z\",\"lastModified\":\"2020-09-25T21:45:31.6794623Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n \ }\r\n}" headers: cache-control: @@ -1599,7 +469,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:35 GMT + - Wed, 13 Jan 2021 01:25:07 GMT expires: - '-1' odata-version: @@ -1649,11 +519,11 @@ interactions: --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1676,7 +546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:36 GMT + - Wed, 13 Jan 2021 01:25:08 GMT expires: - '-1' odata-version: @@ -1694,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -1713,11 +583,11 @@ interactions: - -g -a -n --ips --disable-cdn User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1730,17 +600,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.577069Z\",\"lastModified\":\"2020-09-25T21:45:36.474281Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:09.3727817Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1647' + - '1649' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:37 GMT + - Wed, 13 Jan 2021 01:25:10 GMT expires: - '-1' odata-version: @@ -1792,11 +662,11 @@ interactions: - -g -a -n --ips --disable-cdn User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1824,7 +694,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Wed, 13 Jan 2021 01:25:12 GMT expires: - '-1' odata-version: @@ -1842,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -1861,11 +731,11 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Australia @@ -1883,17 +753,17 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2020-09-25T21:44:40.577069Z\",\"lastModified\":\"2020-09-25T21:45:39.1950951Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:12.2640615Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2022' + - '2023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Wed, 13 Jan 2021 01:25:13 GMT expires: - '-1' odata-version: @@ -1930,27 +800,27 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:45:40 GMT + - Wed, 13 Jan 2021 01:25:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 pragma: - no-cache server: @@ -1960,7 +830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -1979,123 +849,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"37fa15b2-9ed4-4f21-a255-108bc33ba7e1\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:43 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"37fa15b2-9ed4-4f21-a255-108bc33ba7e1\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:45:45 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"37fa15b2-9ed4-4f21-a255-108bc33ba7e1\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"983d1fb2-5582-40b4-8025-0c39ab56225d\"\r\n + string: "{\r\n \"name\":\"41d5ba8c-5916-42db-b1f1-80a0ef85636c\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2103,7 +867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:48 GMT + - Wed, 13 Jan 2021 01:25:18 GMT expires: - '-1' odata-version: @@ -2138,17 +902,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"37fa15b2-9ed4-4f21-a255-108bc33ba7e1\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"41d5ba8c-5916-42db-b1f1-80a0ef85636c\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/37fa15b2-9ed4-4f21-a255-108bc33ba7e1?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2156,7 +920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:50 GMT + - Wed, 13 Jan 2021 01:25:20 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml index 978287bcb4b..dcac68e3d9d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "brazilsouth", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"33f647b6-b8d4-4c51-8466-a817710d864d\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"4270e524-9370-40ed-9610-12bd15b67643\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:53 GMT + - Wed, 13 Jan 2021 01:45:14 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1199' status: code: 201 message: Created @@ -75,25 +77,25 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"89778dfc-764c-4008-b373-be7f71108db9\",\"created\":\"2020-09-25T21:44:55.233Z\",\"lastModified\":\"2020-09-25T21:44:55.233Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"a03781cb-2924-483d-8f95-68e725f3b777\",\"created\":\"2021-01-13T01:45:15.71Z\",\"lastModified\":\"2021-01-13T01:45:15.71Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Wed, 13 Jan 2021 01:45:16 GMT expires: - '-1' odata-version: @@ -131,26 +133,26 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000005\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:44:57.9723574Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-13T01:45:18.614031Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":true,\"dash\":false,\"hls\":false,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '517' + - '516' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:57 GMT + - Wed, 13 Jan 2021 01:45:18 GMT expires: - '-1' odata-version: @@ -164,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 201 message: Created @@ -190,15 +192,15 @@ interactions: --alternative-media-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:59.9233002Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.1728438Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n}" headers: @@ -209,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:59 GMT + - Wed, 13 Jan 2021 01:45:19 GMT expires: - '-1' odata-version: @@ -242,15 +244,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:59.923Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.173Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n}" headers: @@ -261,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:01 GMT + - Wed, 13 Jan 2021 01:45:20 GMT expires: - '-1' odata-version: @@ -296,11 +298,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sl000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sl000007?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -315,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:45:02 GMT + - Wed, 13 Jan 2021 01:45:22 GMT expires: - '-1' pragma: @@ -344,15 +346,15 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:59.923Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.173Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: @@ -363,7 +365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:04 GMT + - Wed, 13 Jan 2021 01:45:22 GMT expires: - '-1' odata-version: @@ -400,11 +402,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006/listPaths?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006/listPaths?api-version=2020-05-01 response: body: string: "{\r\n \"streamingPaths\":[\r\n \r\n ],\"downloadPaths\":[\r\n @@ -417,7 +419,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:05 GMT + - Wed, 13 Jan 2021 01:45:24 GMT expires: - '-1' odata-version: @@ -456,11 +458,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: '' @@ -470,7 +472,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:45:07 GMT + - Wed, 13 Jan 2021 01:45:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml index 1517e396133..e230da9b759 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"25981958-c33f-4609-8e62-15e166aef439\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"d6761540-8dfd-4785-80eb-694587d4d8d7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:32 GMT + - Wed, 13 Jan 2021 01:24:52 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -75,25 +77,25 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"87369cc0-5688-4019-a417-eb2c53978d9c\",\"created\":\"2020-09-25T22:02:34.19Z\",\"lastModified\":\"2020-09-25T22:02:34.19Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"0acebbb7-55a1-4cbe-9250-43fcc4e95bff\",\"created\":\"2021-01-13T01:24:54.057Z\",\"lastModified\":\"2021-01-13T01:24:54.057Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '532' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Wed, 13 Jan 2021 01:24:54 GMT expires: - '-1' odata-version: @@ -132,16 +134,16 @@ interactions: - -a -n -g --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000006\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a440b3b1-8c98-4219-a22e-285c6f041ef1\",\"created\":\"2020-09-25T22:02:35.413Z\",\"lastModified\":\"2020-09-25T22:02:35.413Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"eff4d6ac-cf38-4ada-810d-15444177cc06\",\"name\":\"testOption\",\"configuration\":{\r\n + \ \"policyId\":\"ac361059-61f5-46f2-8cc2-86ba2465702d\",\"created\":\"2021-01-13T01:24:55.323Z\",\"lastModified\":\"2021-01-13T01:24:55.323Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"6d82050c-08d2-4042-b4f7-65bbe89a9133\",\"name\":\"testOption\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -153,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Wed, 13 Jan 2021 01:24:55 GMT expires: - '-1' odata-version: @@ -171,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -195,16 +197,16 @@ interactions: - -n -a -g --content-key-policy-name --streaming-policy-name --asset-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000005\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T22:02:36.2270873Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"6d70aa59-7303-4d59-b158-5f32593b8ae1\",\"streamingPolicyName\":\"Predefined_ClearKey\",\"defaultContentKeyPolicyName\":\"pn000006\",\"contentKeys\":[\r\n - \ {\r\n \"id\":\"87e64644-e35a-4618-a7ab-beecb8e94051\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"tracks\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:24:56.1039387Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"780f18f4-9d35-4b97-a69c-6714ddf5d421\",\"streamingPolicyName\":\"Predefined_ClearKey\",\"defaultContentKeyPolicyName\":\"pn000006\",\"contentKeys\":[\r\n + \ {\r\n \"id\":\"7a0021d0-98b8-4377-806a-47cba09c7cf4\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"filters\":[\r\n \r\n ]\r\n \ }\r\n}" headers: @@ -215,7 +217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 GMT + - Wed, 13 Jan 2021 01:24:59 GMT expires: - '-1' odata-version: @@ -250,14 +252,14 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000005/listContentKeys?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000005/listContentKeys?api-version=2020-05-01 response: body: - string: "{\r\n \"contentKeys\":[\r\n {\r\n \"id\":\"87e64644-e35a-4618-a7ab-beecb8e94051\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"value\":\"xTjxYiOhu1xcU1SoWTQPJw==\",\"policyName\":\"pn000006\",\"tracks\":[\r\n + string: "{\r\n \"contentKeys\":[\r\n {\r\n \"id\":\"7a0021d0-98b8-4377-806a-47cba09c7cf4\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"value\":\"Zc8Q9VeldEk+7KyR5eiFBw==\",\"policyName\":\"pn000006\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n}" headers: cache-control: @@ -267,7 +269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 GMT + - Wed, 13 Jan 2021 01:25:02 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml index 18175bc762b..4d2e1dccedc 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"80509962-2079-47de-8bd9-8ce8250fa1e1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ec1ad47b-a757-46cd-b902-52d1eb14cfe1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:55 GMT + - Wed, 13 Jan 2021 01:25:07 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -75,15 +77,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"8907503f-9e18-491b-a98e-62bbaa35e312\",\"created\":\"2020-09-25T21:44:56.057Z\",\"lastModified\":\"2020-09-25T21:44:56.057Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"85c54ed4-f006-41b8-b078-e62e6f2ced74\",\"created\":\"2021-01-13T01:25:08.133Z\",\"lastModified\":\"2021-01-13T01:25:08.133Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -93,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:55 GMT + - Wed, 13 Jan 2021 01:25:07 GMT expires: - '-1' odata-version: @@ -138,15 +140,15 @@ interactions: --cenc-protocols --cbcs-fair-play-template --cenc-play-ready-template --cenc-widevine-template User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000005\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:44:56.6668782Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-13T01:25:08.7215965Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"testLabel2\"\r\n },\"keyToTrackMappings\":[\r\n @@ -168,7 +170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:55 GMT + - Wed, 13 Jan 2021 01:25:08 GMT expires: - '-1' odata-version: @@ -182,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -211,15 +213,15 @@ interactions: --alternative-media-id --content-keys User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:57.1871181Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.2533579Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ {\r\n \"id\":\"88888888-0000-0000-0000-000000000002\",\"type\":\"CommonEncryptionCenc\",\"labelReferenceInStreamingPolicy\":\"testLabel2\",\"tracks\":[\r\n \ \r\n ]\r\n },{\r\n \"id\":\"88888888-0000-0000-0000-000000000001\",\"type\":\"CommonEncryptionCbcs\",\"labelReferenceInStreamingPolicy\":\"testLabel1\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n @@ -232,7 +234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Wed, 13 Jan 2021 01:25:09 GMT expires: - '-1' odata-version: @@ -265,17 +267,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:57.187Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n - \ {\r\n \"id\":\"88888888-0000-0000-0000-000000000002\",\"type\":\"CommonEncryptionCenc\",\"labelReferenceInStreamingPolicy\":\"testLabel2\",\"tracks\":[\r\n - \ \r\n ]\r\n },{\r\n \"id\":\"88888888-0000-0000-0000-000000000001\",\"type\":\"CommonEncryptionCbcs\",\"labelReferenceInStreamingPolicy\":\"testLabel1\",\"tracks\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.253Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ {\r\n \"id\":\"88888888-0000-0000-0000-000000000001\",\"type\":\"CommonEncryptionCbcs\",\"labelReferenceInStreamingPolicy\":\"testLabel1\",\"tracks\":[\r\n + \ \r\n ]\r\n },{\r\n \"id\":\"88888888-0000-0000-0000-000000000002\",\"type\":\"CommonEncryptionCenc\",\"labelReferenceInStreamingPolicy\":\"testLabel2\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n}" headers: @@ -286,7 +288,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:57 GMT + - Wed, 13 Jan 2021 01:25:09 GMT expires: - '-1' odata-version: @@ -321,15 +323,15 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:44:57.187Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.253Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: @@ -340,7 +342,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:57 GMT + - Wed, 13 Jan 2021 01:25:10 GMT expires: - '-1' odata-version: @@ -377,11 +379,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006/listPaths?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006/listPaths?api-version=2020-05-01 response: body: string: "{\r\n \"streamingPaths\":[\r\n {\r\n \"streamingProtocol\":\"Hls\",\"encryptionScheme\":\"CommonEncryptionCenc\",\"paths\":[\r\n @@ -397,7 +399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:59 GMT + - Wed, 13 Jan 2021 01:25:10 GMT expires: - '-1' odata-version: @@ -436,11 +438,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000006?api-version=2020-05-01 response: body: string: '' @@ -450,7 +452,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:59 GMT + - Wed, 13 Jan 2021 01:25:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml index 3a44cbce161..3af458b107e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "brazilsouth", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"e4dd53c4-62c7-4c15-89e6-17a73dc14a87\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"fc4c3636-cb23-4a5e-8e10-3c892878ba7a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:13 GMT + - Wed, 13 Jan 2021 01:42:26 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -75,25 +77,25 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"8dfe84a1-e907-4930-8fde-00e44f2b4fd9\",\"created\":\"2020-09-25T21:46:15.607Z\",\"lastModified\":\"2020-09-25T21:46:15.607Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"9e690cbd-4351-476b-8adc-b2e88fef0511\",\"created\":\"2021-01-13T01:42:28.31Z\",\"lastModified\":\"2021-01-13T01:42:28.31Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:16 GMT + - Wed, 13 Jan 2021 01:42:29 GMT expires: - '-1' odata-version: @@ -107,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 201 message: Created @@ -130,11 +132,11 @@ interactions: - -a --asset-name -g -n --first-quality User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/assetFilters/filter000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/assetFilters/filter000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"filter000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004/assetFilters/filter000005\",\"type\":\"Microsoft.Media/mediaservices/assets/assetFilters\",\"properties\":{\r\n @@ -148,7 +150,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:18 GMT + - Wed, 13 Jan 2021 01:42:32 GMT expires: - '-1' odata-version: @@ -162,7 +164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 201 message: Created @@ -186,15 +188,15 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:21.2044719Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-13T01:42:34.9735182Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":true,\"dash\":false,\"hls\":false,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: @@ -205,7 +207,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:20 GMT + - Wed, 13 Jan 2021 01:42:34 GMT expires: - '-1' odata-version: @@ -219,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -246,26 +248,26 @@ interactions: --alternative-media-id --filters User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:46:22.6959898Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.74931Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '704' + - '702' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:23 GMT + - Wed, 13 Jan 2021 01:42:37 GMT expires: - '-1' odata-version: @@ -298,26 +300,26 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:46:22.697Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.75Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '700' + - '699' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:25 GMT + - Wed, 13 Jan 2021 01:42:39 GMT expires: - '-1' odata-version: @@ -352,26 +354,26 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2020-09-25T21:46:22.697Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.75Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '760' + - '759' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:25 GMT + - Wed, 13 Jan 2021 01:42:40 GMT expires: - '-1' odata-version: @@ -408,11 +410,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007/listPaths?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007/listPaths?api-version=2020-05-01 response: body: string: "{\r\n \"streamingPaths\":[\r\n \r\n ],\"downloadPaths\":[\r\n @@ -425,7 +427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Wed, 13 Jan 2021 01:42:42 GMT expires: - '-1' odata-version: @@ -443,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -464,11 +466,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000007?api-version=2020-05-01 response: body: string: '' @@ -478,7 +480,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Wed, 13 Jan 2021 01:42:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml index a836a89c54e..569a0e5bcd7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"4922abb7-069e-4557-a0d7-1be2a6a88f4c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"f68b1040-64b2-4aa0-8d80-5709373aeae0\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:53 GMT + - Wed, 13 Jan 2021 01:44:26 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -76,26 +78,26 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T22:00:54.3236226Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '517' + - '516' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Wed, 13 Jan 2021 01:44:27 GMT expires: - '-1' odata-version: @@ -109,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' status: code: 201 message: Created @@ -128,26 +130,26 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T22:00:54.3236226Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '517' + - '516' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Wed, 13 Jan 2021 01:44:27 GMT expires: - '-1' odata-version: @@ -182,11 +184,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"Predefined_ClearKey\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/Predefined_ClearKey\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n @@ -227,18 +229,18 @@ interactions: \ },\"keyToTrackMappings\":[\r\n \r\n ]\r\n \ },\"drm\":{\r\n \"fairPlay\":{\r\n \"allowPersistentLicense\":false\r\n \ }\r\n }\r\n }\r\n }\r\n },{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T22:00:54.3236226Z\",\"noEncryption\":{\r\n + \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '5406' + - '5405' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Wed, 13 Jan 2021 01:44:27 GMT expires: - '-1' odata-version: @@ -275,11 +277,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: '' @@ -289,7 +291,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Wed, 13 Jan 2021 01:44:28 GMT expires: - '-1' pragma: @@ -301,7 +303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml index 790a27880e8..a34c67d934a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"24245ef5-016a-4356-9577-de49a647e4d1\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"735d603d-d9fe-4ff8-9be8-d7935cbf8efc\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:33 GMT + - Wed, 13 Jan 2021 01:25:24 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -80,15 +82,15 @@ interactions: --cbcs-fair-play-allow-persistent-license User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T22:05:35.1254522Z\",\"commonEncryptionCbcs\":{\r\n + \ \"created\":\"2021-01-13T01:25:26.5320748Z\",\"commonEncryptionCbcs\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -102,7 +104,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:34 GMT + - Wed, 13 Jan 2021 01:25:25 GMT expires: - '-1' odata-version: @@ -116,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml index fa73c1619fe..3eb3c5289d2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"80595b50-8186-44d3-8d74-8756b0325028\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"158b0ddc-6a14-434c-989d-9df72036b2d5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:38 GMT + - Wed, 13 Jan 2021 01:25:46 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1196' status: code: 201 message: Created @@ -78,15 +80,15 @@ interactions: - -a -n -g --cbcs-protocols --cbcs-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:45:40.4284947Z\",\"commonEncryptionCbcs\":{\r\n + \ \"created\":\"2021-01-13T01:25:48.3314577Z\",\"commonEncryptionCbcs\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -100,7 +102,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Wed, 13 Jan 2021 01:25:47 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml index 8ce2605e493..7537e9654a6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"546fa458-8ab3-460e-94db-03767dc89e0a\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"5e4df3c1-d1c6-4584-84d9-9503b178b359\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:41 GMT + - Wed, 13 Jan 2021 01:25:35 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' status: code: 201 message: Created @@ -87,16 +89,16 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"edf61ec6-e771-4752-b5a3-27d437ad9402\",\"created\":\"2020-09-25T21:45:43.183Z\",\"lastModified\":\"2020-09-25T21:45:43.183Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"3beb0caa-6694-4eb6-ad36-3484e628a550\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"22136366-5f40-4fd3-bf46-0e2ffa235fe7\",\"created\":\"2021-01-13T01:25:36.94Z\",\"lastModified\":\"2021-01-13T01:25:36.94Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"076a7a36-9e44-4381-9fec-7e91375b6a42\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -110,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '1933' + - '1931' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:43 GMT + - Wed, 13 Jan 2021 01:25:36 GMT expires: - '-1' odata-version: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' status: code: 200 message: OK @@ -157,16 +159,16 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"04ed85eb-8d15-4de9-9be8-f3e0c9d781e0\",\"created\":\"2020-09-25T21:45:43.84Z\",\"lastModified\":\"2020-09-25T21:45:43.84Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"2088ab3c-6966-42ca-af52-950cf26af4a7\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"a4645ebb-6607-437e-a167-222424aa0604\",\"created\":\"2021-01-13T01:25:37.633Z\",\"lastModified\":\"2021-01-13T01:25:37.633Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d918e419-25e0-42e4-8ab2-296f54b51d5f\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -174,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '847' + - '849' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:43 GMT + - Wed, 13 Jan 2021 01:25:37 GMT expires: - '-1' odata-version: @@ -196,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1194' status: code: 200 message: OK @@ -235,15 +237,15 @@ interactions: --cenc-play-ready-attributes --cenc-widevine-template User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:45:44.5605405Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-13T01:25:38.382927Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -272,11 +274,11 @@ interactions: cache-control: - no-cache content-length: - - '2394' + - '2393' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:44 GMT + - Wed, 13 Jan 2021 01:25:37 GMT expires: - '-1' odata-version: @@ -290,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml index 56a496a8f0f..5cb3de24a9a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"e74075f2-6827-4f81-827e-fb07188eb2d8\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"2e0dd05a-38a1-49e7-bf7b-cf300850ef70\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:05 GMT + - Wed, 13 Jan 2021 01:25:48 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -87,16 +89,16 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"4a8ef0ff-6ba2-44a4-9ae0-44d2e493d657\",\"created\":\"2020-09-25T21:46:06.977Z\",\"lastModified\":\"2020-09-25T21:46:06.977Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"958fdc3c-8c1d-4167-b441-0abe7911e12d\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"fde9a060-2497-4ea6-aeec-800f5105d922\",\"created\":\"2021-01-13T01:25:49.337Z\",\"lastModified\":\"2021-01-13T01:25:49.337Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"0f75ba37-8c8d-4a98-a6cb-7b6b76d16f50\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:06 GMT + - Wed, 13 Jan 2021 01:25:48 GMT expires: - '-1' odata-version: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1193' status: code: 200 message: OK @@ -157,16 +159,16 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a7e1fa55-554f-4d47-8606-06a8ce314c12\",\"created\":\"2020-09-25T21:46:07.533Z\",\"lastModified\":\"2020-09-25T21:46:07.533Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"17e026fe-46f8-44bb-bd81-d3192a693180\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"a716fe65-d7fd-43ea-af54-40894e79595a\",\"created\":\"2021-01-13T01:25:50.01Z\",\"lastModified\":\"2021-01-13T01:25:50.01Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"512fcc8d-1ffa-448f-97e1-c2182df36736\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -174,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '847' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:06 GMT + - Wed, 13 Jan 2021 01:25:49 GMT expires: - '-1' odata-version: @@ -196,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' status: code: 200 message: OK @@ -232,15 +234,15 @@ interactions: --cenc-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:08.1600519Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-13T01:25:50.6294279Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -272,7 +274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:07 GMT + - Wed, 13 Jan 2021 01:25:50 GMT expires: - '-1' odata-version: @@ -286,7 +288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml index 5346d60843d..4bf50d68f8f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6a18f0af-aade-4ee7-9bd1-6b7fdee3a94a\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"8d38a209-2f04-44bf-969a-65a5080a57bc\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:02 GMT + - Wed, 13 Jan 2021 01:26:03 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -87,16 +89,16 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/ckp?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a09d9260-88f2-4a88-bd3d-fe7e4435e3e8\",\"created\":\"2020-09-25T21:46:03.297Z\",\"lastModified\":\"2020-09-25T21:46:03.297Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"6890edea-d5bd-4559-910f-2f922d28c3b2\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"81b69857-cd81-41fa-81f7-8f2db37d54e7\",\"created\":\"2021-01-13T01:26:04.037Z\",\"lastModified\":\"2021-01-13T01:26:04.037Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"1f77de6d-9681-441b-8116-d54c26ad2614\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:02 GMT + - Wed, 13 Jan 2021 01:26:03 GMT expires: - '-1' odata-version: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -157,16 +159,16 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/demoPolicy15?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"dfecdd32-9b20-4ce0-8b02-b17e94a5f500\",\"created\":\"2020-09-25T21:46:03.89Z\",\"lastModified\":\"2020-09-25T21:46:03.89Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"52cfe4cd-5537-4b4b-9d20-fa83ef3792d6\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"b212056c-18bc-4836-a007-5100f4e74414\",\"created\":\"2021-01-13T01:26:04.61Z\",\"lastModified\":\"2021-01-13T01:26:04.61Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"dca9f993-2438-4abb-8fcc-5e7b5d3d4def\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -178,7 +180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Wed, 13 Jan 2021 01:26:04 GMT expires: - '-1' odata-version: @@ -196,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 200 message: OK @@ -232,15 +234,15 @@ interactions: --cenc-default-key-label --cenc-disable-widevine User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:04.5300472Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-13T01:26:05.2463437Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -271,7 +273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Wed, 13 Jan 2021 01:26:04 GMT expires: - '-1' odata-version: @@ -285,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml index 41708e6758d..ff2ad153c24 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '302' + - '332' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"64aa0edc-78bf-4725-9f3c-82efa60d4e2e\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"5457264d-d4ed-4fad-8ad4-bd2de464b2c9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:26 GMT + - Wed, 13 Jan 2021 01:26:15 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,15 +79,15 @@ interactions: - -a -n -g --envelope-protocols --envelope-template --envelope-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingPolicies/spn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:28.2139126Z\",\"envelopeEncryption\":{\r\n + \ \"created\":\"2021-01-13T01:26:16.6446093Z\",\"envelopeEncryption\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":false\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -99,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:27 GMT + - Wed, 13 Jan 2021 01:26:15 GMT expires: - '-1' odata-version: @@ -113,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml index a52e3da38fb..8b4be0b1e26 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "southeastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"f712b7b7-e143-457b-af1f-241b82e03e52\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bde332e7-c3b6-418f-8ccd-a74ddcd36c7f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:21 GMT + - Wed, 13 Jan 2021 01:19:12 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -76,11 +78,11 @@ interactions: - -g -a --id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/syncStorageKeys?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/syncStorageKeys?api-version=2020-05-01 response: body: string: '' @@ -90,7 +92,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:40:23 GMT + - Wed, 13 Jan 2021 01:19:14 GMT expires: - '-1' pragma: @@ -123,11 +125,11 @@ interactions: - -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: '' @@ -137,7 +139,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:40:26 GMT + - Wed, 13 Jan 2021 01:19:52 GMT expires: - '-1' pragma: @@ -149,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml index 7a861a50cc6..13d97628a69 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"6f9fda90-94ee-4d5d-971e-9c0401de5b0b\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"e144c3c6-0e1d-4380-9ed4-2de1d33ec7ca\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:32 GMT + - Wed, 13 Jan 2021 01:26:16 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -76,15 +78,15 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:34.5557034Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -96,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:33 GMT + - Wed, 13 Jan 2021 01:26:17 GMT expires: - '-1' odata-version: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 201 message: Created @@ -129,15 +131,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:34.5557034Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:35 GMT + - Wed, 13 Jan 2021 01:26:18 GMT expires: - '-1' odata-version: @@ -184,11 +186,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/transform000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/transform000005?api-version=2020-05-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -203,7 +205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:46:37 GMT + - Wed, 13 Jan 2021 01:26:20 GMT expires: - '-1' pragma: @@ -232,15 +234,15 @@ interactions: - --description -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:34.5557034Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -252,7 +254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:38 GMT + - Wed, 13 Jan 2021 01:26:22 GMT expires: - '-1' odata-version: @@ -293,15 +295,15 @@ interactions: - --description -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"description\":\"mydesc\",\"lastModified\":\"2020-09-25T21:46:40.6793299Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-13T01:26:24.2541756Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -313,7 +315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:40 GMT + - Wed, 13 Jan 2021 01:26:24 GMT expires: - '-1' odata-version: @@ -331,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' status: code: 200 message: OK @@ -350,15 +352,15 @@ interactions: - --preset -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"description\":\"mydesc\",\"lastModified\":\"2020-09-25T21:46:40.6793299Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-13T01:26:24.2541756Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -370,7 +372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:41 GMT + - Wed, 13 Jan 2021 01:26:25 GMT expires: - '-1' odata-version: @@ -426,15 +428,15 @@ interactions: - --preset -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:42.6941638Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:26.3362648Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -457,7 +459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:42 GMT + - Wed, 13 Jan 2021 01:26:25 GMT expires: - '-1' odata-version: @@ -475,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -494,15 +496,15 @@ interactions: - --output-index -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:42.6941638Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:26.3362648Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -525,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:44 GMT + - Wed, 13 Jan 2021 01:26:27 GMT expires: - '-1' odata-version: @@ -553,9 +555,9 @@ interactions: 1.0}]}, "codecs": [{"@odata.type": "#Microsoft.Media.AacAudio", "channels": 2, "samplingRate": 48000, "bitrate": 128000, "profile": "AacLc"}, {"@odata.type": "#Microsoft.Media.H264Video", "keyFrameInterval": "PT2S", "stretchMode": "AutoSize", - "sceneChangeDetection": false, "complexity": "Balanced", "layers": [{"width": - "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": - 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": + "syncMode": "Auto", "sceneChangeDetection": false, "complexity": "Balanced", + "layers": [{"width": "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", + "bitrate": 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}, {"width": "640", "height": "360", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": 1000000, "maxBitrate": 1000000, "bFrames": @@ -573,22 +575,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1328' + - '1348' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --output-index -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:44.9159292Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:28.4950242Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -609,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:44 GMT + - Wed, 13 Jan 2021 01:26:27 GMT expires: - '-1' odata-version: @@ -627,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' status: code: 200 message: OK @@ -646,15 +648,15 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:34.5557034Z\",\"lastModified\":\"2020-09-25T21:46:44.9159292Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:28.4950242Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n @@ -676,7 +678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:46 GMT + - Wed, 13 Jan 2021 01:26:29 GMT expires: - '-1' odata-version: @@ -713,11 +715,11 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: '' @@ -727,7 +729,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:46:47 GMT + - Wed, 13 Jan 2021 01:26:31 GMT expires: - '-1' pragma: @@ -739,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml index 59e5439dfdb..13dda2e870d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"42903d56-84f3-46b9-a902-11fb1d979e38\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"0c386ea5-539d-456d-bc33-beba75d33551\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:54 GMT + - Wed, 13 Jan 2021 01:26:29 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -90,15 +92,15 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:46:56.9512291Z\",\"lastModified\":\"2020-09-25T21:46:56.9512291Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:26:31.4250458Z\",\"lastModified\":\"2021-01-13T01:26:31.4250458Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -119,7 +121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:56 GMT + - Wed, 13 Jan 2021 01:26:30 GMT expires: - '-1' odata-version: @@ -133,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml index 3818a6fb81e..ab7e2e4e9f8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "centralindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '307' + - '337' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"07dab366-1a7f-4f52-8a0a-e70d0ad3cb8c\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"0759de94-c9f9-43cb-b725-242b74480773\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '669' + - '787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:51 GMT + - Wed, 13 Jan 2021 01:26:42 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml index 03079d8e39f..70a58b50e6e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japaneast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"5209a90e-2fef-4cd2-bb4d-dca4ac341f1e\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"32c1d210-c127-45e3-8f6f-07a32af6c1a9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:09 GMT + - Wed, 13 Jan 2021 01:26:58 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' status: code: 201 message: Created @@ -76,15 +78,15 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:11.4061435Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:00.0439034Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -96,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:10 GMT + - Wed, 13 Jan 2021 01:26:59 GMT expires: - '-1' odata-version: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 201 message: Created @@ -129,15 +131,15 @@ interactions: - -a -n -g --preset --on-error --relative-priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:11.4061435Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:00.0439034Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:12 GMT + - Wed, 13 Jan 2021 01:27:00 GMT expires: - '-1' odata-version: @@ -206,15 +208,15 @@ interactions: - -a -n -g --preset --on-error --relative-priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:12.7927842Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:01.3661003Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -237,7 +239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:12 GMT + - Wed, 13 Jan 2021 01:27:01 GMT expires: - '-1' odata-version: @@ -255,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -271,18 +273,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --preset --audio-language + - -a -n -g --preset --audio-language --audio-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:12.7927842Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:01.3661003Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -305,7 +307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Wed, 13 Jan 2021 01:27:01 GMT expires: - '-1' odata-version: @@ -335,9 +337,9 @@ interactions: 1.0}]}, "codecs": [{"@odata.type": "#Microsoft.Media.AacAudio", "channels": 2, "samplingRate": 48000, "bitrate": 128000, "profile": "AacLc"}, {"@odata.type": "#Microsoft.Media.H264Video", "keyFrameInterval": "PT2S", "stretchMode": "AutoSize", - "sceneChangeDetection": false, "complexity": "Balanced", "layers": [{"width": - "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": - 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": + "syncMode": "Auto", "sceneChangeDetection": false, "complexity": "Balanced", + "layers": [{"width": "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", + "bitrate": 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}, {"width": "640", "height": "360", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": 1000000, "maxBitrate": 1000000, "bFrames": @@ -345,7 +347,7 @@ interactions: "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}]}], "formats": [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", "outputFiles": []}]}}, {"preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", - "audioLanguage": "es-ES"}}]}}' + "audioLanguage": "es-ES", "mode": "Basic"}}]}}' headers: Accept: - application/json @@ -356,22 +358,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1592' + - '1629' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset --audio-language + - -a -n -g --preset --audio-language --audio-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:14.1554621Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:02.7358922Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -386,17 +388,18 @@ interactions: \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n - \ }\r\n }\r\n ]\r\n }\r\n}" + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n }\r\n }\r\n + \ }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2375' + - '2467' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Wed, 13 Jan 2021 01:27:02 GMT expires: - '-1' odata-version: @@ -414,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -430,18 +433,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --preset --audio-language --insights-to-extract + - -a -n -g --preset --audio-language --insights-to-extract --video-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:14.1554621Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:02.7358922Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -456,17 +459,18 @@ interactions: \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n - \ }\r\n }\r\n ]\r\n }\r\n}" + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n }\r\n }\r\n + \ }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2375' + - '2467' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Wed, 13 Jan 2021 01:27:03 GMT expires: - '-1' odata-version: @@ -496,9 +500,9 @@ interactions: 1.0}]}, "codecs": [{"@odata.type": "#Microsoft.Media.AacAudio", "channels": 2, "samplingRate": 48000, "bitrate": 128000, "profile": "AacLc"}, {"@odata.type": "#Microsoft.Media.H264Video", "keyFrameInterval": "PT2S", "stretchMode": "AutoSize", - "sceneChangeDetection": false, "complexity": "Balanced", "layers": [{"width": - "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": - 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": + "syncMode": "Auto", "sceneChangeDetection": false, "complexity": "Balanced", + "layers": [{"width": "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", + "bitrate": 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}, {"width": "640", "height": "360", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": 1000000, "maxBitrate": 1000000, "bFrames": @@ -507,8 +511,9 @@ interactions: [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", "outputFiles": []}]}}, {"onError": "StopProcessingJob", "relativePriority": "Normal", "preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", - "audioLanguage": "es-ES"}}, {"preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", - "audioLanguage": "en-US", "insightsToExtract": "AudioInsightsOnly"}}]}}' + "audioLanguage": "es-ES", "mode": "Basic", "experimentalOptions": {"basicAudioEnabled": + "true"}}}, {"preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", + "audioLanguage": "en-US", "mode": "Basic", "insightsToExtract": "AudioInsightsOnly"}}]}}' headers: Accept: - application/json @@ -519,22 +524,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1791' + - '1899' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --preset --audio-language --insights-to-extract + - -a -n -g --preset --audio-language --insights-to-extract --video-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:15.5548595Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:04.0396979Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -549,19 +554,21 @@ interactions: \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n - \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n }\r\n }\r\n + \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n },\"insightsToExtract\":\"AudioInsightsOnly\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2603' + - '2787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Wed, 13 Jan 2021 01:27:03 GMT expires: - '-1' odata-version: @@ -579,7 +586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 200 message: OK @@ -598,15 +605,15 @@ interactions: - -a -n -g --preset --resolution User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:15.5548595Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:04.0396979Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -621,19 +628,21 @@ interactions: \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n - \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n }\r\n }\r\n + \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n },\"insightsToExtract\":\"AudioInsightsOnly\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2603' + - '2787' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:16 GMT + - Wed, 13 Jan 2021 01:27:04 GMT expires: - '-1' odata-version: @@ -663,9 +672,9 @@ interactions: 1.0}]}, "codecs": [{"@odata.type": "#Microsoft.Media.AacAudio", "channels": 2, "samplingRate": 48000, "bitrate": 128000, "profile": "AacLc"}, {"@odata.type": "#Microsoft.Media.H264Video", "keyFrameInterval": "PT2S", "stretchMode": "AutoSize", - "sceneChangeDetection": false, "complexity": "Balanced", "layers": [{"width": - "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": - 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": + "syncMode": "Auto", "sceneChangeDetection": false, "complexity": "Balanced", + "layers": [{"width": "1280", "height": "720", "@odata.type": "#Microsoft.Media.H264Layer", + "bitrate": 2000000, "maxBitrate": 2000000, "bFrames": 3, "slices": 0, "adaptiveBFrame": true, "profile": "Auto", "level": "auto", "bufferWindow": "PT5S", "referenceFrames": 3, "entropyMode": "Cabac"}, {"width": "640", "height": "360", "@odata.type": "#Microsoft.Media.H264Layer", "bitrate": 1000000, "maxBitrate": 1000000, "bFrames": @@ -674,10 +683,12 @@ interactions: [{"filenamePattern": "{Basename}_{Bitrate}{Extension}", "@odata.type": "#Microsoft.Media.Mp4Format", "outputFiles": []}]}}, {"onError": "StopProcessingJob", "relativePriority": "Normal", "preset": {"@odata.type": "#Microsoft.Media.AudioAnalyzerPreset", - "audioLanguage": "es-ES"}}, {"onError": "StopProcessingJob", "relativePriority": - "Normal", "preset": {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", - "audioLanguage": "en-US", "insightsToExtract": "AudioInsightsOnly"}}, {"preset": - {"@odata.type": "#Microsoft.Media.FaceDetectorPreset", "resolution": "SourceResolution"}}]}}' + "audioLanguage": "es-ES", "mode": "Basic", "experimentalOptions": {"basicAudioEnabled": + "true"}}}, {"onError": "StopProcessingJob", "relativePriority": "Normal", "preset": + {"@odata.type": "#Microsoft.Media.VideoAnalyzerPreset", "audioLanguage": "en-US", + "mode": "Basic", "experimentalOptions": {"basicAudioEnabled": "true"}, "insightsToExtract": + "AudioInsightsOnly"}}, {"preset": {"@odata.type": "#Microsoft.Media.FaceDetectorPreset", + "resolution": "SourceResolution"}}]}}' headers: Accept: - application/json @@ -688,22 +699,22 @@ interactions: Connection: - keep-alive Content-Length: - - '1955' + - '2117' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --preset --resolution User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2020-09-25T21:47:11.4061435Z\",\"lastModified\":\"2020-09-25T21:47:16.8906108Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:05.4508919Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -718,9 +729,11 @@ interactions: \ {\r\n \"@odata.type\":\"#Microsoft.Media.Mp4Format\",\"filenamePattern\":\"{Basename}_{Bitrate}{Extension}\",\"outputFiles\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n }\r\n \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\"\r\n - \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n - \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"insightsToExtract\":\"AudioInsightsOnly\"\r\n + \ \"@odata.type\":\"#Microsoft.Media.AudioAnalyzerPreset\",\"audioLanguage\":\"es-ES\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n }\r\n }\r\n + \ },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n + \ \"@odata.type\":\"#Microsoft.Media.VideoAnalyzerPreset\",\"audioLanguage\":\"en-US\",\"mode\":\"Basic\",\"experimentalOptions\":{\r\n + \ \"basicAudioEnabled\":\"true\"\r\n },\"insightsToExtract\":\"AudioInsightsOnly\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.FaceDetectorPreset\",\"resolution\":\"SourceResolution\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -728,11 +741,11 @@ interactions: cache-control: - no-cache content-length: - - '2798' + - '2982' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:16 GMT + - Wed, 13 Jan 2021 01:27:05 GMT expires: - '-1' odata-version: @@ -750,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml index 4e905e23c01..fadb48c912c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"de94eaed-62b8-4c03-a1e5-1cd7daa22083\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"bfb128c8-3dc0-433e-b27e-5f2c63083d5c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:59 GMT + - Wed, 13 Jan 2021 01:19:58 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -77,16 +79,16 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"5ebd1c27-2c96-4262-ab78-b07ad76a049b\",\"created\":\"2020-09-25T21:41:01.427Z\",\"lastModified\":\"2020-09-25T21:41:01.427Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"aa50a6e4-6ced-49d4-909c-475cca5bcad1\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"c2e30b28-b1da-4d91-b3db-b83f808498c9\",\"created\":\"2021-01-13T01:20:01.187Z\",\"lastModified\":\"2021-01-13T01:20:01.187Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"0a94df46-15bc-459b-804e-bfd315968bb0\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -98,7 +100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:00 GMT + - Wed, 13 Jan 2021 01:20:00 GMT expires: - '-1' odata-version: @@ -116,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml index b65d5803605..b10f10bde4d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '303' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"629bb45a-c074-4e15-8b9c-63d3861cf8c0\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"0c8ae761-09ff-4e11-8df6-91c2fe641952\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:55 GMT + - Wed, 13 Jan 2021 01:20:28 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -81,16 +83,16 @@ interactions: --rental-and-lease-key-type --rental-duration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"2ea76d3a-c52b-4934-b3ee-933ff807a844\",\"created\":\"2020-09-25T21:40:57.503Z\",\"lastModified\":\"2020-09-25T21:40:57.503Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"e090188d-7dc8-4892-a24e-f2585021d24f\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"5f723667-c752-4a5a-8388-ad7ebc3f6a1b\",\"created\":\"2021-01-13T01:20:30.737Z\",\"lastModified\":\"2021-01-13T01:20:30.737Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"4cc479c0-f1bf-45ea-a2a4-5ab57ed9a755\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"Undefined\",\"rentalDuration\":60\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -102,7 +104,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:57 GMT + - Wed, 13 Jan 2021 01:20:31 GMT expires: - '-1' odata-version: @@ -120,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml index 394c566147f..53d1ceb4ed0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '303' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"920cbf35-c330-4cbd-b478-57d191267fa6\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"37a395e9-c2a5-4cde-a712-0665da5af39d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:19 GMT + - Wed, 13 Jan 2021 01:20:57 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -83,16 +85,16 @@ interactions: --rental-duration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"6e236546-c626-417f-893a-ea1f07b6ca5f\",\"created\":\"2020-09-25T21:41:21.487Z\",\"lastModified\":\"2020-09-25T21:41:21.487Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"661d11d1-f4fc-447e-bc82-2e34e37de3d3\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"9f8f6741-9e58-4cd9-bb10-b35aa431f4b3\",\"created\":\"2021-01-13T01:20:59.58Z\",\"lastModified\":\"2021-01-13T01:20:59.58Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"6dfe7c83-37f0-421d-a8af-53c6c5e01d3b\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"DualExpiry\",\"rentalDuration\":0,\"offlineRentalConfiguration\":{\r\n \ \"playbackDurationSeconds\":60,\"storageDurationSeconds\":60\r\n \ }\r\n },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n @@ -101,11 +103,11 @@ interactions: cache-control: - no-cache content-length: - - '1076' + - '1074' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:21 GMT + - Wed, 13 Jan 2021 01:21:00 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml index df9faea35bc..1cb4bab9d06 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japanwest", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"64c7fde3-98d6-4855-affd-c430be9110ee\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"006adec5-9691-40e5-a82c-ae7843e70015\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:45 GMT + - Wed, 13 Jan 2021 01:20:14 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml index 75fdcebd006..28248f3a042 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japaneast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"a818815c-fcf3-47ea-a855-a433fa31dc00\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"d8ac2f4a-7d78-4e74-8af3-6a4d484d0596\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:18 GMT + - Wed, 13 Jan 2021 01:20:39 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 201 message: Created @@ -87,16 +89,16 @@ interactions: - -a -n -g --open-restriction --play-ready-template --description --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a0112afc-fa6e-41cb-8f77-19d0d25b27d8\",\"created\":\"2020-09-25T21:41:20.323Z\",\"lastModified\":\"2020-09-25T21:41:20.323Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"02c6b9ad-0d0e-4034-986b-1ef2dba248fd\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"81c51222-5953-4bab-9d0b-4dd789528518\",\"created\":\"2021-01-13T01:20:40.507Z\",\"lastModified\":\"2021-01-13T01:20:40.507Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"cb5975a7-24cf-4092-925d-438fbc7b68eb\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:19 GMT + - Wed, 13 Jan 2021 01:20:39 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml index 438a83dc704..00d87574d82 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "southeastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"961bc6ef-64c8-4d8f-924e-7fa0f94e5884\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"edd9bad5-42c4-4caa-911c-5aa68617fba5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:43 GMT + - Wed, 13 Jan 2021 01:21:09 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -87,16 +89,16 @@ interactions: --widevine-template --token-claims --open-id-connect-discovery-document --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"7ff2b885-06b3-444b-9a8b-3147ee34c48f\",\"created\":\"2020-09-25T21:41:45.437Z\",\"lastModified\":\"2020-09-25T21:41:45.437Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"cf286ba4-f6ea-4459-80e2-f9ffe95a0c1c\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"8dfe1647-4b1a-4ca0-982f-225e829060a5\",\"created\":\"2021-01-13T01:21:11.68Z\",\"lastModified\":\"2021-01-13T01:21:11.68Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"cbd18267-c62a-4a39-95aa-56afa6e9e820\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -115,11 +117,11 @@ interactions: cache-control: - no-cache content-length: - - '1840' + - '1838' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:45 GMT + - Wed, 13 Jan 2021 01:21:12 GMT expires: - '-1' odata-version: @@ -137,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml index 57bad42ad28..606297b7ec6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"a779b3b8-ac0c-485d-b4c0-eaa4d187e3bd\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"3ca3e6da-c1fb-479c-8dee-14f7fb3e684d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:06 GMT + - Wed, 13 Jan 2021 01:20:26 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -78,16 +80,16 @@ interactions: - -a -n -g --description --widevine-template --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"b38a6e3d-c9f9-4d19-a279-6b70f6a52b45\",\"created\":\"2020-09-25T21:42:07.51Z\",\"lastModified\":\"2020-09-25T21:42:07.51Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"072fb840-f53c-409c-9561-dd52ec798cd0\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"2fc6b272-bc01-4862-8b63-e8fa39121a90\",\"created\":\"2021-01-13T01:20:27.557Z\",\"lastModified\":\"2021-01-13T01:20:27.557Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"628a963d-e7da-4124-82b7-ea5031c31c80\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -100,11 +102,11 @@ interactions: cache-control: - no-cache content-length: - - '1266' + - '1268' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:07 GMT + - Wed, 13 Jan 2021 01:20:27 GMT expires: - '-1' odata-version: @@ -122,7 +124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml index 1ecc3922bea..ab34ac82110 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"0e033339-1fdb-40d0-90ab-f28e785f618d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"2cfa82d2-9a7b-42db-a985-0742a855a6d7\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:49 GMT + - Wed, 13 Jan 2021 01:20:53 GMT expires: - '-1' odata-version: @@ -77,16 +79,16 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"80f4c2c6-2d26-4d4d-8040-36142695ccad\",\"created\":\"2020-09-25T21:41:50.483Z\",\"lastModified\":\"2020-09-25T21:41:50.483Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"702f11a5-1c76-4597-a4cc-01517821f85d\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"0b8cbe4d-1359-43f6-a60a-56019fb4ad4f\",\"created\":\"2021-01-13T01:20:54.353Z\",\"lastModified\":\"2021-01-13T01:20:54.353Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d48201dc-9c16-435f-a329-997c2835807e\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -98,7 +100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:50 GMT + - Wed, 13 Jan 2021 01:20:54 GMT expires: - '-1' odata-version: @@ -116,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -135,16 +137,16 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"80f4c2c6-2d26-4d4d-8040-36142695ccad\",\"created\":\"2020-09-25T21:41:50.483Z\",\"lastModified\":\"2020-09-25T21:41:50.483Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"702f11a5-1c76-4597-a4cc-01517821f85d\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"0b8cbe4d-1359-43f6-a60a-56019fb4ad4f\",\"created\":\"2021-01-13T01:20:54.353Z\",\"lastModified\":\"2021-01-13T01:20:54.353Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d48201dc-9c16-435f-a329-997c2835807e\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" @@ -156,7 +158,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:50 GMT + - Wed, 13 Jan 2021 01:20:54 GMT expires: - '-1' odata-version: @@ -193,11 +195,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: '' @@ -207,7 +209,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:41:51 GMT + - Wed, 13 Jan 2021 01:20:55 GMT expires: - '-1' pragma: @@ -219,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -238,11 +240,11 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n \r\n ]\r\n}" @@ -254,7 +256,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:52 GMT + - Wed, 13 Jan 2021 01:20:55 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml index b2d3259f863..ea64797ec6c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "canadacentral", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"66db8bfa-7dfc-428b-a62a-196e901942c7\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"abb4e627-ae25-4f5a-bb75-e373d4197d23\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:14 GMT + - Wed, 13 Jan 2021 01:21:28 GMT expires: - '-1' odata-version: @@ -78,16 +80,16 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"af8d9df5-76f9-4aca-b8b2-38357ee25324\",\"created\":\"2020-09-25T21:42:15.983Z\",\"lastModified\":\"2020-09-25T21:42:15.983Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"d084d20b-e68b-456f-86b6-a5dfe23ffd47\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"4326abb5-fbfa-40cc-8e06-ed720922f11f\",\"created\":\"2021-01-13T01:21:29.883Z\",\"lastModified\":\"2021-01-13T01:21:29.883Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"4f9f8e6a-4fef-4da7-bffb-c48cb067ce41\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -99,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:15 GMT + - Wed, 13 Jan 2021 01:21:29 GMT expires: - '-1' odata-version: @@ -117,7 +119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -136,16 +138,16 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"af8d9df5-76f9-4aca-b8b2-38357ee25324\",\"created\":\"2020-09-25T21:42:15.983Z\",\"lastModified\":\"2020-09-25T21:42:15.983Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"d084d20b-e68b-456f-86b6-a5dfe23ffd47\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"4326abb5-fbfa-40cc-8e06-ed720922f11f\",\"created\":\"2021-01-13T01:21:29.883Z\",\"lastModified\":\"2021-01-13T01:21:29.883Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"4f9f8e6a-4fef-4da7-bffb-c48cb067ce41\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -157,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 GMT + - Wed, 13 Jan 2021 01:21:29 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml index 4c18327e562..cc149965baf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "canadaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - East\",\"properties\":{\r\n \"mediaServiceId\":\"922cbac1-0707-4c50-b3f6-68389d37d57a\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"6fc30c42-1f3b-4573-9ac6-9c91fbaa26a6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:24 GMT + - Wed, 13 Jan 2021 01:21:08 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -82,16 +84,16 @@ interactions: --issuer --audience --token-type User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"84dab595-bc2b-4743-afcc-f9f90dffe201\",\"created\":\"2020-09-25T21:41:25.933Z\",\"lastModified\":\"2020-09-25T21:41:25.933Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"84d5bef3-1f10-4a34-a9f2-75e85fa37f8c\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n @@ -106,7 +108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:25 GMT + - Wed, 13 Jan 2021 01:21:09 GMT expires: - '-1' odata-version: @@ -124,7 +126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 200 message: OK @@ -143,16 +145,16 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"84dab595-bc2b-4743-afcc-f9f90dffe201\",\"created\":\"2020-09-25T21:41:25.933Z\",\"lastModified\":\"2020-09-25T21:41:25.933Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"84d5bef3-1f10-4a34-a9f2-75e85fa37f8c\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n @@ -167,7 +169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 GMT + - Wed, 13 Jan 2021 01:21:09 GMT expires: - '-1' odata-version: @@ -204,15 +206,15 @@ interactions: - -a -n -g --with-secrets User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2020-05-01 response: body: - string: "{\r\n \"policyId\":\"84dab595-bc2b-4743-afcc-f9f90dffe201\",\"created\":\"2020-09-25T21:41:25.933Z\",\"lastModified\":\"2020-09-25T21:41:25.933Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"84d5bef3-1f10-4a34-a9f2-75e85fa37f8c\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":\"MIICEjCCAXsCAg36MA0GCSqGSIb3DQEBBQUAMIGbMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEDAOBgNVBAcTB0NodW8ta3UxETAPBgNVBAoTCEZyYW5rNEREMRgwFgYDVQQLEw9XZWJDZXJ0IFN1cHBvcnQxGDAWBgNVBAMTD0ZyYW5rNEREIFdlYiBDQTEjMCEGCSqGSIb3DQEJARYUc3VwcG9ydEBmcmFuazRkZC5jb20wHhcNMTIwODIyMDUyNjU0WhcNMTcwODIxMDUyNjU0WjBKMQswCQYDVQQGEwJKUDEOMAwGA1UECAwFVG9reW8xETAPBgNVBAoMCEZyYW5rNEREMRgwFgYDVQQDDA93d3cuZXhhbXBsZS5jb20wXDANBgkqhkiG9w0BAQEFAANLADBIAkEAm/xmkHmEQrurE/0re/jeFRLl8ZPjBop7uLHhnia7lQG/5zDtZIUC3RVpqDSwBuw/NTweGyuP+o8AG98HxqxTBwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBABS2TLuBeTPmcaTaUW/LCB2NYOy8GMdzR1mx8iBIu2H6/E2tiY3RIevV2OW61qY2/XRQg7YPxx3ffeUugX9F4J/iPnnu1zAxxyBy2VguKv4SWjRFoRkIfIlHX0qVviMhSlNy2ioFLy7JcPZb+v3ftDGywUqcBiVDoea0Hn+GmxZA\"\r\n @@ -227,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 GMT + - Wed, 13 Jan 2021 01:21:10 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml index a56bb535e8b..a85f7c435a0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "australiaeast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"746e3353-4f18-4111-9e5e-3f1295d92811\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"8977d319-900e-444a-b25f-3fa6396942be\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:50 GMT + - Wed, 13 Jan 2021 01:21:35 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -86,16 +88,16 @@ interactions: --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"bf9d95e4-0fb5-4ba4-8ecf-915a9bc35de4\",\"created\":\"2020-09-25T21:41:53.003Z\",\"lastModified\":\"2020-09-25T21:41:53.003Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"efb0f6e2-a180-4740-8953-16ce19041606\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:37.25Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"58c96078-3d52-4d39-8977-c8a7bf6d109f\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n @@ -109,11 +111,11 @@ interactions: cache-control: - no-cache content-length: - - '1419' + - '1417' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:52 GMT + - Wed, 13 Jan 2021 01:21:37 GMT expires: - '-1' odata-version: @@ -131,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -152,15 +154,15 @@ interactions: - -a -n -g --description --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2020-05-01 response: body: - string: "{\r\n \"policyId\":\"bf9d95e4-0fb5-4ba4-8ecf-915a9bc35de4\",\"created\":\"2020-09-25T21:41:53.003Z\",\"lastModified\":\"2020-09-25T21:41:53.003Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"efb0f6e2-a180-4740-8953-16ce19041606\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:37.25Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"58c96078-3d52-4d39-8977-c8a7bf6d109f\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":\"YTFiMmMzZDRlNWY2ZzdoOGk5ajA=\"\r\n @@ -174,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '1065' + - '1063' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:53 GMT + - Wed, 13 Jan 2021 01:21:39 GMT expires: - '-1' odata-version: @@ -227,16 +229,16 @@ interactions: - -a -n -g --description --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"bf9d95e4-0fb5-4ba4-8ecf-915a9bc35de4\",\"created\":\"2020-09-25T21:41:53.003Z\",\"lastModified\":\"2020-09-25T21:41:55.713Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"e6400548-0ceb-4b74-b067-15900726b54c\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:40.77Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"59640774-a93c-49d8-9ff1-74a382a4cd5b\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n @@ -250,11 +252,11 @@ interactions: cache-control: - no-cache content-length: - - '1419' + - '1417' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:55 GMT + - Wed, 13 Jan 2021 01:21:40 GMT expires: - '-1' odata-version: @@ -272,7 +274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml index 309b5c7398c..8514dee9051 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "centralus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c61b1945-4e14-4948-bd32-06cb37da0111\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b93b7340-8c0c-463a-bb9c-51d6caf30b7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 GMT + - Wed, 13 Jan 2021 01:21:58 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -68,31 +70,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c61b1945-4e14-4948-bd32-06cb37da0111\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b93b7340-8c0c-463a-bb9c-51d6caf30b7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 GMT + - Wed, 13 Jan 2021 01:21:59 GMT expires: - '-1' odata-version: @@ -117,19 +122,20 @@ interactions: "asd", "input": {"streamingProtocol": "RTMP", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_192.168.0.0", "address": "192.168.0.0", - "subnetPrefixLength": 28}]}}, "keyFrameIntervalDuration": "PT2S", "accessToken": - "0abf356884d74b4aacbd7b1ebd3da0f7"}, "preview": {"accessControl": {"ip": {"allow": - [{"name": "le000004_192.168.0.0", "address": "192.168.0.0", "subnetPrefixLength": - 28}, {"name": "le000004_0.0.0.0", "address": "0.0.0.0"}]}}, "previewLocator": - "88888888-0000-0000-0000-000000000001"}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n", "crossDomainPolicy": "\r\n\r\n\r\n \r\n"}, "vanityUrl": true, "streamOptions": - ["Default", "LowLatency"]}}' + domain=''*'' />\r\n"}, "useStaticHostname": true, "hostnamePrefix": + "custom000005", "streamOptions": ["Default", "LowLatency"]}}' headers: Accept: - application/json @@ -140,25 +146,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1542' + - '1646' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:19.54602Z\",\"lastModified\":\"2020-09-25T21:42:19.54602Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:01.3722011Z\",\"lastModified\":\"2021-01-13T01:22:01.3722011Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n @@ -168,7 +175,7 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -176,23 +183,24 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2552' + - '2794' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 GMT + - Wed, 13 Jan 2021 01:22:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,10 +212,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -220,22 +228,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"446661ee-6182-40a7-8514-843123f119b9\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"be831a1e-b9cb-42a6-80ca-eff38680abfb\"\r\n + string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,11 +252,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:22 GMT + - Wed, 13 Jan 2021 01:22:04 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -277,22 +284,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"446661ee-6182-40a7-8514-843123f119b9\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"be831a1e-b9cb-42a6-80ca-eff38680abfb\"\r\n + string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -300,11 +308,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:24 GMT + - Wed, 13 Jan 2021 01:22:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -334,22 +340,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"446661ee-6182-40a7-8514-843123f119b9\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"be831a1e-b9cb-42a6-80ca-eff38680abfb\"\r\n + string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -357,11 +364,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:26 GMT + - Wed, 13 Jan 2021 01:22:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -391,23 +396,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --streaming-protocol --encoding-type --tags --stream-options - --preview-locator --ips --preview-ips --key-frame-interval-duration --access-token - --description --client-access-policy --cross-domain-policy --vanity-url + - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --custom-hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:19.5616122Z\",\"lastModified\":\"2020-09-25T21:42:26.1656072Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.4034505Z\",\"lastModified\":\"2021-01-13T01:22:07.9925691Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n @@ -417,8 +423,8 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -426,17 +432,18 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3363' + - '3601' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:26 GMT + - Wed, 13 Jan 2021 01:22:08 GMT expires: - '-1' odata-version: @@ -475,27 +482,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:27 GMT + - Wed, 13 Jan 2021 01:22:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 pragma: - no-cache server: @@ -524,72 +531,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fdb2daf1-356f-4285-bab3-4d9bfe03527e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"be831a1e-b9cb-42a6-80ca-eff38680abfb\"\r\n + string: "{\r\n \"name\":\"a906a0fb-027b-4609-9f51-050d81cf58b7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:42:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"fdb2daf1-356f-4285-bab3-4d9bfe03527e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"be831a1e-b9cb-42a6-80ca-eff38680abfb\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -597,11 +549,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:31 GMT + - Wed, 13 Jan 2021 01:22:12 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fdb2daf1-356f-4285-bab3-4d9bfe03527e?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -634,20 +584,20 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:19.5616122Z\",\"lastModified\":\"2020-09-25T21:42:31.6068732Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.4034505Z\",\"lastModified\":\"2021-01-13T01:22:12.2118075Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n @@ -657,8 +607,8 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -666,17 +616,18 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3363' + - '3601' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:32 GMT + - Wed, 13 Jan 2021 01:22:13 GMT expires: - '-1' odata-version: @@ -713,27 +664,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7556c4f5-1021-4f52-b7a6-bd9855afeb05?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:32 GMT + - Wed, 13 Jan 2021 01:22:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7556c4f5-1021-4f52-b7a6-bd9855afeb05?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 pragma: - no-cache server: @@ -743,7 +694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -762,17 +713,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7556c4f5-1021-4f52-b7a6-bd9855afeb05?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"7556c4f5-1021-4f52-b7a6-bd9855afeb05\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"d0c07769-77e2-4787-b80f-51e2957e48b5\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7556c4f5-1021-4f52-b7a6-bd9855afeb05?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -780,11 +731,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:35 GMT + - Wed, 13 Jan 2021 01:22:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7556c4f5-1021-4f52-b7a6-bd9855afeb05?api-version=2018-07-01 odata-version: - '4.0' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml index 1aa7e4ad305..6944587953a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "northeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"5d54da6e-4400-464b-b8f2-3f335ece45a9\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:01 GMT + - Wed, 13 Jan 2021 01:21:14 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"5d54da6e-4400-464b-b8f2-3f335ece45a9\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:03 GMT + - Wed, 13 Jan 2021 01:21:15 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '411' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:05.9169348Z\",\"lastModified\":\"2020-09-25T21:42:05.9169348Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b03f30b9a0e64622873267bf30fe351a\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:18.7196896Z\",\"lastModified\":\"2021-01-13T01:21:18.7196896Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ac008916-a7cb-4abf-b1d6-edf132a4495e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:06 GMT + - Wed, 13 Jan 2021 01:21:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ac008916-a7cb-4abf-b1d6-edf132a4495e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ac008916-a7cb-4abf-b1d6-edf132a4495e?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ac008916-a7cb-4abf-b1d6-edf132a4495e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b52dbf4-4404-4c22-a7c2-3e1fdbdce705\"\r\n + string: "{\r\n \"name\":\"f2e15d96-0a1b-4cdd-9717-4ec78a5442f0\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6333a53a-65a0-4858-8444-fe1e01bb10f3\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ac008916-a7cb-4abf-b1d6-edf132a4495e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:09 GMT + - Wed, 13 Jan 2021 01:21:22 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:05.9479174Z\",\"lastModified\":\"2020-09-25T21:42:06.1382669Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b03f30b9a0e64622873267bf30fe351a\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1448' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:09 GMT + - Wed, 13 Jan 2021 01:21:22 GMT expires: - '-1' odata-version: @@ -310,35 +316,36 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:05.9479174Z\",\"lastModified\":\"2020-09-25T21:42:06.1382669Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b03f30b9a0e64622873267bf30fe351a\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1734' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:10 GMT + - Wed, 13 Jan 2021 01:21:24 GMT expires: - '-1' odata-version: @@ -373,26 +380,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"5d54da6e-4400-464b-b8f2-3f335ece45a9\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:12 GMT + - Wed, 13 Jan 2021 01:21:25 GMT expires: - '-1' odata-version: @@ -417,7 +426,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000005_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -428,47 +437,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '411' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:14.6212072Z\",\"lastModified\":\"2020-09-25T21:42:14.6212072Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"3fc9ae60decd4ef39496866f08c8fb43\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:27.5569654Z\",\"lastModified\":\"2021-01-13T01:21:27.5569654Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ba1c610b-69e5-42db-8d59-9bffacbc4f0a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:14 GMT + - Wed, 13 Jan 2021 01:21:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/ba1c610b-69e5-42db-8d59-9bffacbc4f0a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -480,10 +490,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -499,17 +509,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ba1c610b-69e5-42db-8d59-9bffacbc4f0a?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ba1c610b-69e5-42db-8d59-9bffacbc4f0a\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c851191a-c97c-4150-9940-9cb487884510\"\r\n + string: "{\r\n \"name\":\"82da79c5-7809-4cbb-8d52-9f4f7b774c65\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7525159b-f9f2-4039-94d9-c62cf78d0534\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ba1c610b-69e5-42db-8d59-9bffacbc4f0a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -517,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:17 GMT + - Wed, 13 Jan 2021 01:21:30 GMT expires: - '-1' odata-version: @@ -552,32 +562,33 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:14.6524706Z\",\"lastModified\":\"2020-09-25T21:42:14.8824078Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"3fc9ae60decd4ef39496866f08c8fb43\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:27.5725535Z\",\"lastModified\":\"2021-01-13T01:21:27.8165692Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1448' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:17 GMT + - Wed, 13 Jan 2021 01:21:31 GMT expires: - '-1' odata-version: @@ -612,47 +623,49 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:05.9479174Z\",\"lastModified\":\"2020-09-25T21:42:06.1382669Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b03f30b9a0e64622873267bf30fe351a\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:27.5725535Z\",\"lastModified\":\"2021-01-13T01:21:27.8165692Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:14.6524706Z\",\"lastModified\":\"2020-09-25T21:42:14.8824078Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"3fc9ae60decd4ef39496866f08c8fb43\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3197' + - '3442' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 GMT + - Wed, 13 Jan 2021 01:21:32 GMT expires: - '-1' odata-version: @@ -689,27 +702,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ce70dda2-1a89-42c9-8776-3a050b3be66e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:20 GMT + - Wed, 13 Jan 2021 01:21:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/ce70dda2-1a89-42c9-8776-3a050b3be66e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 pragma: - no-cache server: @@ -719,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -738,17 +751,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ce70dda2-1a89-42c9-8776-3a050b3be66e?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ce70dda2-1a89-42c9-8776-3a050b3be66e\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"37b41b88-21ef-4e74-8b75-ead041ad3a70\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ce70dda2-1a89-42c9-8776-3a050b3be66e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -756,7 +769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:24 GMT + - Wed, 13 Jan 2021 01:21:36 GMT expires: - '-1' odata-version: @@ -791,35 +804,36 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:05.9479174Z\",\"lastModified\":\"2020-09-25T21:42:06.1382669Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b03f30b9a0e64622873267bf30fe351a\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1612' + - '1734' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:25 GMT + - Wed, 13 Jan 2021 01:21:38 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml index 1d4caee3187..1a5bd654a5a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"450cc2e8-cde4-4228-84dc-c93f037fe787\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:49 GMT + - Wed, 13 Jan 2021 01:22:02 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"450cc2e8-cde4-4228-84dc-c93f037fe787\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:51 GMT + - Wed, 13 Jan 2021 01:22:03 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '410' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:53.5273494Z\",\"lastModified\":\"2020-09-25T21:42:53.5273494Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f0d493701f32453ab7b86d719c877ea8\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:06.1930369Z\",\"lastModified\":\"2021-01-13T01:22:06.1930369Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f84e6f1-e9cd-4f16-883b-9ac1b416c5cf?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:53 GMT + - Wed, 13 Jan 2021 01:22:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6f84e6f1-e9cd-4f16-883b-9ac1b416c5cf?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f84e6f1-e9cd-4f16-883b-9ac1b416c5cf?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6f84e6f1-e9cd-4f16-883b-9ac1b416c5cf\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"bb652aba-52b4-4a2c-8dcb-8d37a06db8cd\"\r\n + string: "{\r\n \"name\":\"2a55e40f-c6be-416c-8d02-a91deaa067a4\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"951d667b-f013-4a59-ada6-16429b6cb4fd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f84e6f1-e9cd-4f16-883b-9ac1b416c5cf?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:56 GMT + - Wed, 13 Jan 2021 01:22:08 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:53.5586694Z\",\"lastModified\":\"2020-09-25T21:42:53.9752114Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f0d493701f32453ab7b86d719c877ea8\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1447' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:57 GMT + - Wed, 13 Jan 2021 01:22:09 GMT expires: - '-1' odata-version: @@ -310,35 +316,36 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:53.5586694Z\",\"lastModified\":\"2020-09-25T21:42:53.9752114Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f0d493701f32453ab7b86d719c877ea8\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1611' + - '1734' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:58 GMT + - Wed, 13 Jan 2021 01:22:11 GMT expires: - '-1' odata-version: @@ -373,26 +380,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"450cc2e8-cde4-4228-84dc-c93f037fe787\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:00 GMT + - Wed, 13 Jan 2021 01:22:11 GMT expires: - '-1' odata-version: @@ -417,7 +426,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000005_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -428,47 +437,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '410' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:02.2024134Z\",\"lastModified\":\"2020-09-25T21:43:02.2024134Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ca4851449d54d15917d6e08a86a1b28\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.7001624Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42598ebd-25b2-456e-bee8-10c9ecc4ce07?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:01 GMT + - Wed, 13 Jan 2021 01:22:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/42598ebd-25b2-456e-bee8-10c9ecc4ce07?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -480,10 +490,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -499,17 +509,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42598ebd-25b2-456e-bee8-10c9ecc4ce07?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"42598ebd-25b2-456e-bee8-10c9ecc4ce07\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1f25ff52-8c58-466d-a1e1-0340e93deb6b\"\r\n + string: "{\r\n \"name\":\"f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"20961b9b-ae8c-4941-819a-174a0b22e480\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42598ebd-25b2-456e-bee8-10c9ecc4ce07?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -517,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Wed, 13 Jan 2021 01:22:19 GMT expires: - '-1' odata-version: @@ -552,32 +562,33 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:02.2180299Z\",\"lastModified\":\"2020-09-25T21:43:02.5154781Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ca4851449d54d15917d6e08a86a1b28\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.9593222Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1447' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Wed, 13 Jan 2021 01:22:19 GMT expires: - '-1' odata-version: @@ -612,47 +623,49 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:02.2180299Z\",\"lastModified\":\"2020-09-25T21:43:02.5154781Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ca4851449d54d15917d6e08a86a1b28\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:53.5586694Z\",\"lastModified\":\"2020-09-25T21:42:53.9752114Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f0d493701f32453ab7b86d719c877ea8\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.9593222Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3195' + - '3441' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:07 GMT + - Wed, 13 Jan 2021 01:22:20 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml index f04b6d76dcc..a79898ea79f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"50b36f67-d068-4d22-bfca-9ab3d23f4471\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"0331640d-f73d-4c7c-8572-70b4abe34f3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:06 GMT + - Wed, 13 Jan 2021 01:21:28 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"50b36f67-d068-4d22-bfca-9ab3d23f4471\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"0331640d-f73d-4c7c-8572-70b4abe34f3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:07 GMT + - Wed, 13 Jan 2021 01:21:29 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ interactions: body: '{"location": "East US", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": - []}}}, "encoding": {"encodingType": "Basic"}, "crossSiteAccessPolicies": {}, - "vanityUrl": false}}' + []}}}, "encoding": {"encodingType": "Basic"}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '350' + - '380' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:09.1185478Z\",\"lastModified\":\"2020-09-25T21:42:09.1185478Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"fedb86fdadda43739392218f340c81bd\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:31.1326579Z\",\"lastModified\":\"2021-01-13T01:21:31.1326579Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/92d7887f-6d85-4c55-ad0e-c5b74b634694?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1431' + - '1546' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:09 GMT + - Wed, 13 Jan 2021 01:21:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/92d7887f-6d85-4c55-ad0e-c5b74b634694?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/92d7887f-6d85-4c55-ad0e-c5b74b634694?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"92d7887f-6d85-4c55-ad0e-c5b74b634694\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"a2c6920d-ae93-487c-b8dc-24f496871f79\"\r\n + string: "{\r\n \"name\":\"08644130-1346-4899-8ade-8328fbefd9e7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"32bf6afa-83df-4bd6-b5e3-90e6e2cb5a14\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/92d7887f-6d85-4c55-ad0e-c5b74b634694?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,11 +220,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:12 GMT + - Wed, 13 Jan 2021 01:21:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/92d7887f-6d85-4c55-ad0e-c5b74b634694?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -252,33 +255,34 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:09.1341771Z\",\"lastModified\":\"2020-09-25T21:42:10.6743872Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"fedb86fdadda43739392218f340c81bd\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://37fc4f7751d04cbc986b43a4f81fc8c8.channel.media.azure.net/fedb86fdadda43739392218f340c81bd/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:31.1638437Z\",\"lastModified\":\"2021-01-13T01:21:32.497154Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3ced8d8f10bf4ab8b0e56a5594fe78c4.channel.media.azure.net/62121bac16f243c8b26db2cb6e8f461d/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/8052702c-4313-4da4-97cb-0bcf24f2be41/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/dc0fe54a-5ef3-4437-84b7-7303267a58f6/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1784' + - '1898' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:12 GMT + - Wed, 13 Jan 2021 01:21:33 GMT expires: - '-1' odata-version: @@ -315,27 +319,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/reset?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/reset?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c6f4990c-d87f-48d3-9faa-06af8cdde43f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:13 GMT + - Wed, 13 Jan 2021 01:21:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c6f4990c-d87f-48d3-9faa-06af8cdde43f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 pragma: - no-cache server: @@ -345,7 +349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -364,17 +368,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c6f4990c-d87f-48d3-9faa-06af8cdde43f?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6f4990c-d87f-48d3-9faa-06af8cdde43f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"a2c6920d-ae93-487c-b8dc-24f496871f79\"\r\n + string: "{\r\n \"name\":\"68454223-4a67-420c-9ef1-28407f3938db\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"32bf6afa-83df-4bd6-b5e3-90e6e2cb5a14\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c6f4990c-d87f-48d3-9faa-06af8cdde43f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -382,11 +386,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:15 GMT + - Wed, 13 Jan 2021 01:21:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c6f4990c-d87f-48d3-9faa-06af8cdde43f?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -419,35 +421,36 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:09.1341771Z\",\"lastModified\":\"2020-09-25T21:42:15.4948598Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"fedb86fdadda43739392218f340c81bd\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://37fc4f7751d04cbc986b43a4f81fc8c8.channel.media.azure.net/fedb86fdadda43739392218f340c81bd/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:31.1638437Z\",\"lastModified\":\"2021-01-13T01:21:37.3915861Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3ced8d8f10bf4ab8b0e56a5594fe78c4.channel.media.azure.net/62121bac16f243c8b26db2cb6e8f461d/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/8052702c-4313-4da4-97cb-0bcf24f2be41/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/dc0fe54a-5ef3-4437-84b7-7303267a58f6/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1784' + - '1899' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 GMT + - Wed, 13 Jan 2021 01:21:38 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml index 96ae738cc56..1eb02d4ecd1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '301' + - '331' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"5ae1e699-ecae-4d02-a316-f77d561f1068\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"67efd363-11ff-4234-a69e-ccf45dbf0f87\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:38 GMT + - Wed, 13 Jan 2021 01:22:00 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -69,30 +71,31 @@ interactions: - keep-alive ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --stream-options --preview-locator - --ips --preview-ips --key-frame-interval-duration --access-token --description - --client-access-policy --cross-domain-policy --vanity-url + --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"5ae1e699-ecae-4d02-a316-f77d561f1068\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"67efd363-11ff-4234-a69e-ccf45dbf0f87\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '663' + - '781' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:38 GMT + - Wed, 13 Jan 2021 01:22:01 GMT expires: - '-1' odata-version: @@ -117,18 +120,17 @@ interactions: "asd", "input": {"streamingProtocol": "RTMP", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "0abf356884d74b4aacbd7b1ebd3da0f7"}, - "preview": {"accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", - "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", "address": "0.0.0.0"}]}}, - "previewLocator": "88888888-0000-0000-0000-000000000001"}, "encoding": {"encodingType": - "Basic"}, "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n", "crossDomainPolicy": "\r\n\r\n\r\n \r\n"}, "vanityUrl": true, "streamOptions": + domain=''*'' />\r\n"}, "useStaticHostname": false, "streamOptions": ["Default", "LowLatency"]}}' headers: Accept: @@ -140,25 +142,24 @@ interactions: Connection: - keep-alive Content-Length: - - '1477' + - '1472' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --stream-options --preview-locator - --ips --preview-ips --key-frame-interval-duration --access-token --description - --client-access-policy --cross-domain-policy --vanity-url + --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:40.2169509Z\",\"lastModified\":\"2020-09-25T21:42:40.2169509Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:03.4520934Z\",\"lastModified\":\"2021-01-13T01:22:03.4520934Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n @@ -168,7 +169,7 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -176,23 +177,23 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":null,\"transcriptions\":[\r\n + \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/51830512-5a6c-42ac-95f3-6056a9a373a9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2547' + - '2659' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:39 GMT + - Wed, 13 Jan 2021 01:22:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/51830512-5a6c-42ac-95f3-6056a9a373a9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,10 +205,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -221,21 +222,20 @@ interactions: - keep-alive ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --stream-options --preview-locator - --ips --preview-ips --key-frame-interval-duration --access-token --description - --client-access-policy --cross-domain-policy --vanity-url + --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/51830512-5a6c-42ac-95f3-6056a9a373a9?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"51830512-5a6c-42ac-95f3-6056a9a373a9\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"ceb4aa8f-538f-4f36-94d5-ba557627fdc7\"\r\n + string: "{\r\n \"name\":\"de769e8e-ccda-4076-9b20-bf4ee3974ba6\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7da024c2-bbe1-4107-ae31-c7d9f8d7a938\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/51830512-5a6c-42ac-95f3-6056a9a373a9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,11 +243,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:42 GMT + - Wed, 13 Jan 2021 01:22:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/51830512-5a6c-42ac-95f3-6056a9a373a9?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -278,23 +276,18 @@ interactions: - keep-alive ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --stream-options --preview-locator - --ips --preview-ips --key-frame-interval-duration --access-token --description - --client-access-policy --cross-domain-policy --vanity-url + --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:40.2325488Z\",\"lastModified\":\"2020-09-25T21:42:41.1405911Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-uswe.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-uswe.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-uswe.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-uswe.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:03.467723Z\",\"lastModified\":\"2021-01-13T01:22:03.6516669Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_9.10.11.12\",\"address\":\"9.10.11.12\",\"subnetPrefixLength\":null\r\n @@ -302,9 +295,8 @@ interactions: \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n - \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-uswe.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -312,17 +304,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":null,\"transcriptions\":[\r\n + \ \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3354' + - '2657' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:42 GMT + - Wed, 13 Jan 2021 01:22:05 GMT expires: - '-1' odata-version: @@ -357,21 +349,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:40.2325488Z\",\"lastModified\":\"2020-09-25T21:42:41.1405911Z\",\"vanityUrl\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-uswe.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://le000004-ams000003-uswe.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-uswe.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://le000004-ams000003-uswe.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:03.467723Z\",\"lastModified\":\"2021-01-13T01:22:03.6516669Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_9.10.11.12\",\"address\":\"9.10.11.12\",\"subnetPrefixLength\":null\r\n @@ -379,9 +367,8 @@ interactions: \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n - \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-uswe.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -389,17 +376,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":null,\"transcriptions\":[\r\n + \ \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3354' + - '2657' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:43 GMT + - Wed, 13 Jan 2021 01:22:06 GMT expires: - '-1' odata-version: @@ -434,11 +421,11 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/live-event000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/live-event000005?api-version=2020-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Media/mediaservices/ams000003/liveEvents/live-event000005'' @@ -452,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:42:43 GMT + - Wed, 13 Jan 2021 01:22:07 GMT expires: - '-1' pragma: @@ -483,27 +470,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ea45741e-6185-4113-834b-375e5ecd2a53?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:44 GMT + - Wed, 13 Jan 2021 01:22:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ea45741e-6185-4113-834b-375e5ecd2a53?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 pragma: - no-cache server: @@ -532,17 +519,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ea45741e-6185-4113-834b-375e5ecd2a53?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ea45741e-6185-4113-834b-375e5ecd2a53\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"322e7a2f-845e-45d7-b66a-c8be987a0dcc\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ea45741e-6185-4113-834b-375e5ecd2a53?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -550,11 +537,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:46 GMT + - Wed, 13 Jan 2021 01:22:09 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ea45741e-6185-4113-834b-375e5ecd2a53?api-version=2018-07-01 odata-version: - '4.0' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml new file mode 100644 index 00000000000..728e9ed5e4b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -0,0 +1,472 @@ +interactions: +- request: + body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}]}, "identity": {"type": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account create + Connection: + - keep-alive + Content-Length: + - '335' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --storage-account -l + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South + India\",\"properties\":{\r\n \"mediaServiceId\":\"ea9da941-7ae7-4d0d-8063-f9b654abf5e1\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '785' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:21:40 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --tags --ips + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South + India\",\"properties\":{\r\n \"mediaServiceId\":\"ea9da941-7ae7-4d0d-8063-f9b654abf5e1\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '785' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:21:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: '{"tags": {"key": "value"}, "location": "South India", "properties": {"input": + {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": + "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event create + Connection: + - keep-alive + Content-Length: + - '410' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --tags --ips + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false + response: + body: + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:46.8570945Z\",\"lastModified\":\"2021-01-13T01:21:46.8570945Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n + \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n + \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '1563' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:21:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --tags --ips + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"67748620-8cd2-4e63-b0d4-d297313c2d60\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"477de619-d8ea-4dbf-8614-592830a21d6c\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:22:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --tags --ips + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false + response: + body: + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:46.8740729Z\",\"lastModified\":\"2021-01-13T01:21:47.166873Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n + \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n + \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1561' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:22:24 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event standby + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/allocate?api-version=2020-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 Jan 2021 01:22:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event standby + Connection: + - keep-alive + ParameterSetName: + - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"1e4735d3-9fc2-42db-93de-bc3edec22489\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"477de619-d8ea-4dbf-8614-592830a21d6c\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:22:30 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event standby + Connection: + - keep-alive + ParameterSetName: + - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:46.8740729Z\",\"lastModified\":\"2021-01-13T01:22:28.9000566Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://9be630fc7d3348f69b0aee397b087e94.channel.media.azure.net/da6b7d4e28524b7cb577d87fa8c0eb0c/ingest.isml\"\r\n + \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1916' + content-type: + - application/json; odata.metadata=minimal + date: + - Wed, 13 Jan 2021 01:22:30 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml index 67a2a0b01e9..4992dfcf267 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"8631630f-099c-4f74-bdc6-ce4969bdcdeb\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"b797c4a2-26b2-427f-b35e-e4b2b6bf2e52\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 GMT + - Wed, 13 Jan 2021 01:22:57 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"8631630f-099c-4f74-bdc6-ce4969bdcdeb\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"b797c4a2-26b2-427f-b35e-e4b2b6bf2e52\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:20 GMT + - Wed, 13 Jan 2021 01:22:59 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '410' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:24.0995679Z\",\"lastModified\":\"2020-09-25T21:42:24.0995679Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"6c920e70f4d241ed877d973cbaf5f847\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:03.1883541Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bd5e0c35-a271-4acc-a472-a134e996a6ce?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:23 GMT + - Wed, 13 Jan 2021 01:23:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bd5e0c35-a271-4acc-a472-a134e996a6ce?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bd5e0c35-a271-4acc-a472-a134e996a6ce?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"bd5e0c35-a271-4acc-a472-a134e996a6ce\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"d88fa60d-db01-411b-852a-3e7bbcb06f17\"\r\n + string: "{\r\n \"name\":\"cf215806-7845-458e-93fc-332a6f51850f\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c378a77c-edae-4e80-85c9-d9c6e4c7439c\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bd5e0c35-a271-4acc-a472-a134e996a6ce?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:27 GMT + - Wed, 13 Jan 2021 01:23:06 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:24.1152088Z\",\"lastModified\":\"2020-09-25T21:42:24.4082035Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"6c920e70f4d241ed877d973cbaf5f847\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:03.3950125Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1447' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:27 GMT + - Wed, 13 Jan 2021 01:23:07 GMT expires: - '-1' odata-version: @@ -312,27 +318,27 @@ interactions: - -a --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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/start?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/start?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4c9e9e68-2c3e-42ea-b8d8-e8209697e06d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:30 GMT + - Wed, 13 Jan 2021 01:23:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/4c9e9e68-2c3e-42ea-b8d8-e8209697e06d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 pragma: - no-cache server: @@ -361,17 +367,17 @@ interactions: - -a --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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4c9e9e68-2c3e-42ea-b8d8-e8209697e06d?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4c9e9e68-2c3e-42ea-b8d8-e8209697e06d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"d88fa60d-db01-411b-852a-3e7bbcb06f17\"\r\n + string: "{\r\n \"name\":\"eb21512e-c80b-439f-aed5-76ea14b9850b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c378a77c-edae-4e80-85c9-d9c6e4c7439c\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4c9e9e68-2c3e-42ea-b8d8-e8209697e06d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -379,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:33 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' odata-version: @@ -414,35 +420,36 @@ interactions: - -a --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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:24.1152088Z\",\"lastModified\":\"2020-09-25T21:42:32.2567775Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"6c920e70f4d241ed877d973cbaf5f847\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://ee6bd7910ac548e285794757ab2872a2.channel.media.azure.net/6c920e70f4d241ed877d973cbaf5f847/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:12.8575134Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://0cea8a03b0194fe3ab8a4786a0fbd673.channel.media.azure.net/46e24a95366f41a297bb77308ae28dff/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/fc4f9db2-c7a3-41f0-a37b-420dd816f9cc/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/6102545f-665f-4b71-8d7d-6e88d9aa7659/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1801' + - '1916' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:34 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml index b80f3ec00d7..1bdd6d54b42 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "brazilsouth", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '306' + - '336' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"02b0193e-470e-435b-946d-4f0f01980adb\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"f72bf0d5-1481-4f46-bbf6-32eca90dac69\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:57 GMT + - Wed, 13 Jan 2021 01:21:56 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"02b0193e-470e-435b-946d-4f0f01980adb\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"f72bf0d5-1481-4f46-bbf6-32eca90dac69\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '668' + - '786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:58 GMT + - Wed, 13 Jan 2021 01:21:58 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '411' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:01.6496871Z\",\"lastModified\":\"2020-09-25T21:43:01.6496871Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"933b5d7835ba47c9b0b660b882d3f128\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:01.8481542Z\",\"lastModified\":\"2021-01-13T01:22:01.8481542Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/efdb57b0-b585-4591-98a0-2276f8003e4e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:01 GMT + - Wed, 13 Jan 2021 01:22:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/efdb57b0-b585-4591-98a0-2276f8003e4e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: - code: 202 - message: Accepted + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"InvalidGatewayHost","message":"Host name resolution + failed for ''Microsoft.Media''; cannot fulfill the request."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '130' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Jan 2021 01:22:15 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: 502 + message: Bad Gateway - request: body: null headers: @@ -197,17 +248,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/efdb57b0-b585-4591-98a0-2276f8003e4e?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"efdb57b0-b585-4591-98a0-2276f8003e4e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"822553ed-0f6f-4a26-a723-3ad678c18c78\"\r\n + string: "{\r\n \"name\":\"e3669933-a373-4c97-84d8-a9b4afe53f24\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0f3e70-07df-475a-a32f-983555665362\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/efdb57b0-b585-4591-98a0-2276f8003e4e?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Wed, 13 Jan 2021 01:22:17 GMT expires: - '-1' odata-version: @@ -250,33 +301,34 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:01.6809396Z\",\"lastModified\":\"2020-09-25T21:43:03.8844141Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"933b5d7835ba47c9b0b660b882d3f128\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://8baa8ae856914f0e913bb3472d3281a6.channel.media.azure.net/933b5d7835ba47c9b0b660b882d3f128/ingest.isml\"\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.879392Z\",\"lastModified\":\"2021-01-13T01:22:04.2222756Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://5e5cd710f1b04e5980d659ac4264dd27.channel.media.azure.net/df87655d00354199a544c9683581711f/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/9d51c3e9-02e0-448c-af32-9e779a3f1b8d/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/008179c5-4f27-4bef-9bfd-6030696d7a6e/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1802' + - '1916' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Wed, 13 Jan 2021 01:22:17 GMT expires: - '-1' odata-version: @@ -315,27 +367,27 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:07 GMT + - Wed, 13 Jan 2021 01:22:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 pragma: - no-cache server: @@ -345,7 +397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -364,70 +416,17 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"bde0bb88-f7b9-4a96-b070-094fd66398f4\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"822553ed-0f6f-4a26-a723-3ad678c18c78\"\r\n + string: "{\r\n \"name\":\"b70dd066-406b-4747-bd30-0efc0e19e52d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0f3e70-07df-475a-a32f-983555665362\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 25 Sep 2020 21:43:09 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 - response: - body: - string: "{\r\n \"name\":\"bde0bb88-f7b9-4a96-b070-094fd66398f4\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"822553ed-0f6f-4a26-a723-3ad678c18c78\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bde0bb88-f7b9-4a96-b070-094fd66398f4?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -435,7 +434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:12 GMT + - Wed, 13 Jan 2021 01:22:21 GMT expires: - '-1' odata-version: @@ -470,34 +469,35 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:01.6809396Z\",\"lastModified\":\"2020-09-25T21:43:10.3400116Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"933b5d7835ba47c9b0b660b882d3f128\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.879392Z\",\"lastModified\":\"2021-01-13T01:22:22.0966892Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1448' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:12 GMT + - Wed, 13 Jan 2021 01:22:23 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml index 4344b2f187c..e4b9d94fb59 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "japaneast", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"51c572c3-f18a-4c4e-8f50-cfeccb724479\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"2da7ebc0-e67e-48af-8aae-70c8ec0d6112\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:29 GMT + - Wed, 13 Jan 2021 01:22:08 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"51c572c3-f18a-4c4e-8f50-cfeccb724479\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"2da7ebc0-e67e-48af-8aae-70c8ec0d6112\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:30 GMT + - Wed, 13 Jan 2021 01:22:10 GMT expires: - '-1' odata-version: @@ -115,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '379' + - '409' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:33.3473829Z\",\"lastModified\":\"2020-09-25T21:42:33.3473829Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00a3a05397e94a129e1c3f01e3ddcecd\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:12.8500632Z\",\"lastModified\":\"2021-01-13T01:22:12.8500632Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4cd52619-e931-44da-aba2-86434fe9b96f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1447' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:33 GMT + - Wed, 13 Jan 2021 01:22:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/4cd52619-e931-44da-aba2-86434fe9b96f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4cd52619-e931-44da-aba2-86434fe9b96f?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4cd52619-e931-44da-aba2-86434fe9b96f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"269e011b-0c45-4dfd-bcfe-c91a39aeb37b\"\r\n + string: "{\r\n \"name\":\"7787ee27-8862-4aab-a1dd-9cda8ac65a74\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4cd52619-e931-44da-aba2-86434fe9b96f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:35 GMT + - Wed, 13 Jan 2021 01:22:15 GMT expires: - '-1' odata-version: @@ -250,33 +255,34 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:33.3786115Z\",\"lastModified\":\"2020-09-25T21:42:34.9150631Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00a3a05397e94a129e1c3f01e3ddcecd\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://ac9ac4d1f8254931ac7688a44df3185e.channel.media.azure.net/00a3a05397e94a129e1c3f01e3ddcecd/ingest.isml\"\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:12.8656792Z\",\"lastModified\":\"2021-01-13T01:22:14.2739429Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://164a78da0c2b471e814817bf8b684d49.channel.media.azure.net/5c317b00864847718a7ebcc54dcf0e6a/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/b5827b51-eafa-4453-8095-bd0cbd3bc120/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/7e1036a5-26e2-484e-9604-fe5ecca8b1ed/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1800' + - '1915' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:35 GMT + - Wed, 13 Jan 2021 01:22:16 GMT expires: - '-1' odata-version: @@ -315,15 +321,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"ad8b3a84-df24-4925-bf59-4ed57ef9b226\",\"created\":\"2020-09-25T21:42:38.647Z\",\"lastModified\":\"2020-09-25T21:42:38.647Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"3d7616bd-ae86-4e8e-b949-a97f828e4377\",\"created\":\"2021-01-13T01:22:18.587Z\",\"lastModified\":\"2021-01-13T01:22:18.587Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -333,7 +339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:38 GMT + - Wed, 13 Jan 2021 01:22:18 GMT expires: - '-1' odata-version: @@ -371,31 +377,31 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:40.402742Z\",\"lastModified\":\"2020-09-25T21:42:40.402742Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:20.5067285Z\",\"lastModified\":\"2021-01-13T01:22:20.5067285Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/925526bb-ca6d-4b4b-94af-9544b834fdaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 cache-control: - no-cache content-length: - - '648' + - '650' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:40 GMT + - Wed, 13 Jan 2021 01:22:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/925526bb-ca6d-4b4b-94af-9544b834fdaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -407,10 +413,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -426,17 +432,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/925526bb-ca6d-4b4b-94af-9544b834fdaa?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"925526bb-ca6d-4b4b-94af-9544b834fdaa\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"269e011b-0c45-4dfd-bcfe-c91a39aeb37b\"\r\n + string: "{\r\n \"name\":\"557c0a3a-6573-46d9-a0cd-4c0bc31a4abe\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/925526bb-ca6d-4b4b-94af-9544b834fdaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -444,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:44 GMT + - Wed, 13 Jan 2021 01:22:24 GMT expires: - '-1' odata-version: @@ -479,23 +485,23 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:44.3290731Z\",\"lastModified\":\"2020-09-25T21:42:44.3290731Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:21.178615Z\",\"lastModified\":\"2021-01-13T01:22:21.6393361Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '648' + - '647' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:44 GMT + - Wed, 13 Jan 2021 01:22:24 GMT expires: - '-1' odata-version: @@ -535,19 +541,19 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:46.3383814Z\",\"lastModified\":\"2020-09-25T21:42:46.3383814Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:26.8997455Z\",\"lastModified\":\"2021-01-13T01:22:26.8997455Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d8554271-d7a7-43d2-8f23-01c5c89dc14f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -555,11 +561,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:46 GMT + - Wed, 13 Jan 2021 01:22:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/d8554271-d7a7-43d2-8f23-01c5c89dc14f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -571,10 +577,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -590,17 +596,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d8554271-d7a7-43d2-8f23-01c5c89dc14f?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"d8554271-d7a7-43d2-8f23-01c5c89dc14f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"269e011b-0c45-4dfd-bcfe-c91a39aeb37b\"\r\n + string: "{\r\n \"name\":\"dc99c075-77a8-4790-9d61-e89438e5deb1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d8554271-d7a7-43d2-8f23-01c5c89dc14f?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -608,7 +614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:49 GMT + - Wed, 13 Jan 2021 01:22:30 GMT expires: - '-1' odata-version: @@ -643,13 +649,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:49.8243825Z\",\"lastModified\":\"2020-09-25T21:42:49.8243825Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:27.5247546Z\",\"lastModified\":\"2021-01-13T01:22:27.8926486Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -659,7 +665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:49 GMT + - Wed, 13 Jan 2021 01:22:30 GMT expires: - '-1' odata-version: @@ -694,27 +700,27 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:51.6397809Z\",\"lastModified\":\"2020-09-25T21:42:51.6397809Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:21.178615Z\",\"lastModified\":\"2021-01-13T01:22:21.6393361Z\",\"hls\":null\r\n \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:51.6397809Z\",\"lastModified\":\"2020-09-25T21:42:51.6397809Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:27.5247546Z\",\"lastModified\":\"2021-01-13T01:22:27.8926486Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1357' + - '1356' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:51 GMT + - Wed, 13 Jan 2021 01:22:31 GMT expires: - '-1' odata-version: @@ -753,27 +759,27 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab9e5a98-3b40-4111-a584-247d2bd2a106?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:52 GMT + - Wed, 13 Jan 2021 01:22:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ab9e5a98-3b40-4111-a584-247d2bd2a106?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 pragma: - no-cache server: @@ -802,17 +808,17 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab9e5a98-3b40-4111-a584-247d2bd2a106?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ab9e5a98-3b40-4111-a584-247d2bd2a106\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"269e011b-0c45-4dfd-bcfe-c91a39aeb37b\"\r\n + string: "{\r\n \"name\":\"9d339a7e-d57d-4418-8e51-b6880ceab1da\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab9e5a98-3b40-4111-a584-247d2bd2a106?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -820,7 +826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:54 GMT + - Wed, 13 Jan 2021 01:22:35 GMT expires: - '-1' odata-version: @@ -855,34 +861,35 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:33.3786115Z\",\"lastModified\":\"2020-09-25T21:42:54.9914942Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00a3a05397e94a129e1c3f01e3ddcecd\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:12.8656792Z\",\"lastModified\":\"2021-01-13T01:22:35.8166204Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1446' + - '1561' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:55 GMT + - Wed, 13 Jan 2021 01:22:37 GMT expires: - '-1' odata-version: @@ -917,11 +924,11 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n \r\n ]\r\n}" @@ -933,7 +940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:56 GMT + - Wed, 13 Jan 2021 01:22:38 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml index c62be2a332b..b591b6a3d53 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '303' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"a1effbb4-d0e5-4067-83f3-5f327fe6ad80\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"2b16c8fd-74d2-4720-bb20-b15cb94e9f9a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:39 GMT + - Wed, 13 Jan 2021 01:22:44 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"a1effbb4-d0e5-4067-83f3-5f327fe6ad80\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"2b16c8fd-74d2-4720-bb20-b15cb94e9f9a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:41 GMT + - Wed, 13 Jan 2021 01:22:47 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ interactions: body: '{"location": "East Asia", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": - {"ip": {"allow": []}}}, "encoding": {}, "crossSiteAccessPolicies": {}, "vanityUrl": - false}}' + {"ip": {"allow": []}}}, "encoding": {}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '329' + - '359' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:42:43.7318879Z\",\"lastModified\":\"2020-09-25T21:42:43.7318879Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"96967dfea1024f38acfd479dbb6c3b78\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:49.6932723Z\",\"lastModified\":\"2021-01-13T01:22:49.6932723Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8f8cbb2e-56e5-4b98-8df8-33d41eba18c0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1423' + - '1530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:43 GMT + - Wed, 13 Jan 2021 01:22:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8f8cbb2e-56e5-4b98-8df8-33d41eba18c0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8f8cbb2e-56e5-4b98-8df8-33d41eba18c0?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8f8cbb2e-56e5-4b98-8df8-33d41eba18c0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"df0ab5a8-4738-477d-a42a-45053e3ff24c\"\r\n + string: "{\r\n \"name\":\"0ef7a731-a2df-4df3-b0dc-604630b60ac8\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0c28b594-2ece-493a-8852-86340c2b7805\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8f8cbb2e-56e5-4b98-8df8-33d41eba18c0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:47 GMT + - Wed, 13 Jan 2021 01:22:52 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:43.7475451Z\",\"lastModified\":\"2020-09-25T21:42:43.9836427Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"96967dfea1024f38acfd479dbb6c3b78\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:49.7088859Z\",\"lastModified\":\"2021-01-13T01:22:49.9772148Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1422' + - '1529' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:47 GMT + - Wed, 13 Jan 2021 01:22:53 GMT expires: - '-1' odata-version: @@ -311,34 +317,35 @@ interactions: --cross-domain-policy --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:43.7475451Z\",\"lastModified\":\"2020-09-25T21:42:43.9836427Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"96967dfea1024f38acfd479dbb6c3b78\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:49.7088859Z\",\"lastModified\":\"2021-01-13T01:22:49.9772148Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1422' + - '1529' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:49 GMT + - Wed, 13 Jan 2021 01:22:54 GMT expires: - '-1' odata-version: @@ -363,19 +370,19 @@ interactions: "asd", "input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "96967dfea1024f38acfd479dbb6c3b78", + "keyFrameIntervalDuration": "PT2S", "accessToken": "1043c9e6c9034a0595b0e292a5405c76", "endpoints": []}, "preview": {"endpoints": [], "accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", - "address": "0.0.0.0"}]}}, "previewLocator": "b536c7d4-e526-4982-bed9-a2e6117a2286", + "address": "0.0.0.0"}]}}, "previewLocator": "f24c914a-7491-4369-887b-a50eb7c59b80", "streamingPolicyName": "Predefined_ClearStreamingOnly"}, "encoding": {"encodingType": - "None"}, "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n", "crossDomainPolicy": "\r\n\r\n\r\n \r\n"}, "vanityUrl": false, "streamOptions": + domain=''*'' />\r\n"}, "useStaticHostname": false, "streamOptions": []}}' headers: Accept: @@ -387,7 +394,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1555' + - '1585' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -395,26 +402,26 @@ interactions: --cross-domain-policy --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"0001-01-01T00:00:00Z\",\"lastModified\":\"0001-01-01T00:00:00Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"96967dfea1024f38acfd479dbb6c3b78\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"0001-01-01T00:00:00Z\",\"lastModified\":\"0001-01-01T00:00:00Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_9.10.11.12\",\"address\":\"9.10.11.12\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"None\",\"presetName\":null\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -422,23 +429,23 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":null,\"transcriptions\":[\r\n + \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8101a9dc-e0cb-419f-9392-b0b6acaa3aca?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/11644648-4544-4502-a6d4-350085189e23?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2511' + - '2618' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:50 GMT + - Wed, 13 Jan 2021 01:22:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8101a9dc-e0cb-419f-9392-b0b6acaa3aca?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/11644648-4544-4502-a6d4-350085189e23?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -450,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 202 message: Accepted @@ -470,17 +477,17 @@ interactions: --cross-domain-policy --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8101a9dc-e0cb-419f-9392-b0b6acaa3aca?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/11644648-4544-4502-a6d4-350085189e23?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8101a9dc-e0cb-419f-9392-b0b6acaa3aca\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"df0ab5a8-4738-477d-a42a-45053e3ff24c\"\r\n + string: "{\r\n \"name\":\"11644648-4544-4502-a6d4-350085189e23\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0c28b594-2ece-493a-8852-86340c2b7805\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8101a9dc-e0cb-419f-9392-b0b6acaa3aca?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/11644648-4544-4502-a6d4-350085189e23?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -488,7 +495,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:53 GMT + - Wed, 13 Jan 2021 01:22:59 GMT expires: - '-1' odata-version: @@ -524,24 +531,24 @@ interactions: --cross-domain-policy --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:42:43.7475451Z\",\"lastModified\":\"2020-09-25T21:42:51.0087719Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"96967dfea1024f38acfd479dbb6c3b78\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:49.7088859Z\",\"lastModified\":\"2021-01-13T01:22:56.9959524Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_9.10.11.12\",\"address\":\"9.10.11.12\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"None\",\"presetName\":null\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -549,17 +556,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n }\r\n - \ }\r\n}" + \ \\r\\n\"\r\n },\"hostnamePrefix\":null,\"transcriptions\":[\r\n + \ \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2526' + - '2633' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:53 GMT + - Wed, 13 Jan 2021 01:23:00 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_create.yaml index 68b3dc4785a..9eaa3896a33 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_create.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '334' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"28ef013a-b832-4f18-b0b8-46da32344e59\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"cb54348c-a91d-43de-905c-47101b1839fd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:01 GMT + - Wed, 13 Jan 2021 01:22:53 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"28ef013a-b832-4f18-b0b8-46da32344e59\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"cb54348c-a91d-43de-905c-47101b1839fd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '666' + - '784' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:02 GMT + - Wed, 13 Jan 2021 01:22:54 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ interactions: body: '{"location": "West India", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": - {"ip": {"allow": []}}}, "encoding": {}, "crossSiteAccessPolicies": {}, "vanityUrl": - false}}' + {"ip": {"allow": []}}}, "encoding": {}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '330' + - '360' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:06.1487017Z\",\"lastModified\":\"2020-09-25T21:43:06.1487017Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"636154094cda452cb89492f8cf4966bc\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:59.2420114Z\",\"lastModified\":\"2021-01-13T01:22:59.2420114Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"85d7c23ab1df494d8a1d9bf023bb5f7c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7389388c-b2f6-45a0-a16b-4e638a5d9304\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d3e51e0a-309e-4d51-bd7e-58a96ea9d9b0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/19e6e650-81a4-48b4-a466-c74c0a89ddf0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9b559f47-b049-4ad2-8db5-4e6acab7a3f2?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1424' + - '1531' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:06 GMT + - Wed, 13 Jan 2021 01:22:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/19e6e650-81a4-48b4-a466-c74c0a89ddf0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9b559f47-b049-4ad2-8db5-4e6acab7a3f2?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/19e6e650-81a4-48b4-a466-c74c0a89ddf0?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9b559f47-b049-4ad2-8db5-4e6acab7a3f2?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"19e6e650-81a4-48b4-a466-c74c0a89ddf0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1525eb45-e8f9-4325-ac2a-4c6d3a6aa34c\"\r\n + string: "{\r\n \"name\":\"9b559f47-b049-4ad2-8db5-4e6acab7a3f2\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cc23b96d-4383-48e9-9f30-2d4b4dd2d1f9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/19e6e650-81a4-48b4-a466-c74c0a89ddf0?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9b559f47-b049-4ad2-8db5-4e6acab7a3f2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:09 GMT + - Wed, 13 Jan 2021 01:23:02 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:06.1647013Z\",\"lastModified\":\"2020-09-25T21:43:06.5019548Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"636154094cda452cb89492f8cf4966bc\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:59.2732598Z\",\"lastModified\":\"2021-01-13T01:22:59.4551196Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"85d7c23ab1df494d8a1d9bf023bb5f7c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7389388c-b2f6-45a0-a16b-4e638a5d9304\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d3e51e0a-309e-4d51-bd7e-58a96ea9d9b0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:10 GMT + - Wed, 13 Jan 2021 01:23:03 GMT expires: - '-1' odata-version: @@ -314,25 +320,25 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"399c1d69-0fbf-468f-821a-752c984e8153\",\"created\":\"2020-09-25T21:43:11.04Z\",\"lastModified\":\"2020-09-25T21:43:11.04Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"241847b3-c33d-4861-aa6a-98878c7b546d\",\"created\":\"2021-01-13T01:23:06.447Z\",\"lastModified\":\"2021-01-13T01:23:06.447Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '532' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:11 GMT + - Wed, 13 Jan 2021 01:23:06 GMT expires: - '-1' odata-version: @@ -372,19 +378,19 @@ interactions: --description --fragments-per-ts-segment --output-snap-time User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":\"testDescription\",\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":3,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:14.2844396Z\",\"lastModified\":\"2020-09-25T21:43:14.2844396Z\",\"hls\":{\r\n + \ \"description\":\"testDescription\",\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":3,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:09.7161128Z\",\"lastModified\":\"2021-01-13T01:23:09.7161128Z\",\"hls\":{\r\n \ \"fragmentsPerTsSegment\":5\r\n }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4f75e521-e191-4d42-8907-219a57dcb5d6?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4413628f-5dc4-4fa9-bace-a00f6cb74117?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -392,11 +398,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:15 GMT + - Wed, 13 Jan 2021 01:23:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/4f75e521-e191-4d42-8907-219a57dcb5d6?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/4413628f-5dc4-4fa9-bace-a00f6cb74117?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -408,10 +414,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -428,17 +434,17 @@ interactions: --description --fragments-per-ts-segment --output-snap-time User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4f75e521-e191-4d42-8907-219a57dcb5d6?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4413628f-5dc4-4fa9-bace-a00f6cb74117?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4f75e521-e191-4d42-8907-219a57dcb5d6\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1525eb45-e8f9-4325-ac2a-4c6d3a6aa34c\"\r\n + string: "{\r\n \"name\":\"4413628f-5dc4-4fa9-bace-a00f6cb74117\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cc23b96d-4383-48e9-9f30-2d4b4dd2d1f9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4f75e521-e191-4d42-8907-219a57dcb5d6?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/4413628f-5dc4-4fa9-bace-a00f6cb74117?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -446,7 +452,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' odata-version: @@ -482,23 +488,23 @@ interactions: --description --fragments-per-ts-segment --output-snap-time User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":\"testDescription\",\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":3,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:19.8899079Z\",\"lastModified\":\"2020-09-25T21:43:19.8899079Z\",\"hls\":{\r\n + \ \"description\":\"testDescription\",\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":3,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:10.8254456Z\",\"lastModified\":\"2021-01-13T01:23:11.025034Z\",\"hls\":{\r\n \ \"fragmentsPerTsSegment\":5\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '698' + - '697' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_delete.yaml index 2d120a10acc..ab70fb480c2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_delete.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '303' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"59efa6b7-5714-48b6-afbe-0e71cbc6c97d\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"e5de4777-1f3f-4a93-aaa3-1e8a23429b1f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Wed, 13 Jan 2021 01:22:46 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1197' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"59efa6b7-5714-48b6-afbe-0e71cbc6c97d\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"e5de4777-1f3f-4a93-aaa3-1e8a23429b1f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '665' + - '783' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Wed, 13 Jan 2021 01:22:47 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ interactions: body: '{"location": "East Asia", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": - {"ip": {"allow": []}}}, "encoding": {}, "crossSiteAccessPolicies": {}, "vanityUrl": - false}}' + {"ip": {"allow": []}}}, "encoding": {}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '329' + - '359' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:22.9560497Z\",\"lastModified\":\"2020-09-25T21:43:22.9560497Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b2c74261507b4f19b101fbac48a56ab1\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:50.2894493Z\",\"lastModified\":\"2021-01-13T01:22:50.2894493Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"efa1612886bf430ebd45153a87ebdef0\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bb08bea2-8c7c-42dc-b53c-035461cc9d15\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"02b1748c-f58a-4c3d-a0b3-1fcef32dedd3\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf81261f-afef-4b61-bb96-0a933e5207e9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/26098fe8-8322-4245-9542-a1a652447091?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1423' + - '1530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:22 GMT + - Wed, 13 Jan 2021 01:22:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/cf81261f-afef-4b61-bb96-0a933e5207e9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/26098fe8-8322-4245-9542-a1a652447091?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf81261f-afef-4b61-bb96-0a933e5207e9?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/26098fe8-8322-4245-9542-a1a652447091?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"cf81261f-afef-4b61-bb96-0a933e5207e9\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"877bf510-fb05-46f4-8cea-9bad6d49cf82\"\r\n + string: "{\r\n \"name\":\"26098fe8-8322-4245-9542-a1a652447091\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"e165af87-addd-4061-8a8c-04c663314ad2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf81261f-afef-4b61-bb96-0a933e5207e9?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/26098fe8-8322-4245-9542-a1a652447091?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:26 GMT + - Wed, 13 Jan 2021 01:22:56 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:22.9872706Z\",\"lastModified\":\"2020-09-25T21:43:23.1619985Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"b2c74261507b4f19b101fbac48a56ab1\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:50.3050253Z\",\"lastModified\":\"2021-01-13T01:22:50.5130506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"efa1612886bf430ebd45153a87ebdef0\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bb08bea2-8c7c-42dc-b53c-035461cc9d15\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"02b1748c-f58a-4c3d-a0b3-1fcef32dedd3\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1422' + - '1529' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:26 GMT + - Wed, 13 Jan 2021 01:22:56 GMT expires: - '-1' odata-version: @@ -314,15 +320,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"59f925ef-a8ba-4ef1-9632-a146b4251626\",\"created\":\"2020-09-25T21:43:28.613Z\",\"lastModified\":\"2020-09-25T21:43:28.613Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"aba437b0-aa45-4f7a-a9ca-fd020f001177\",\"created\":\"2021-01-13T01:22:58.363Z\",\"lastModified\":\"2021-01-13T01:22:58.363Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -332,7 +338,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:28 GMT + - Wed, 13 Jan 2021 01:22:59 GMT expires: - '-1' odata-version: @@ -346,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -370,19 +376,19 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:30.1655934Z\",\"lastModified\":\"2020-09-25T21:43:30.1655934Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:00.6497497Z\",\"lastModified\":\"2021-01-13T01:23:00.6497497Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/44990b86-604c-4a1a-8502-6054c3bb7056?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/ab31266f-e1d5-4406-870c-c41a9608f78b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -390,11 +396,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/44990b86-604c-4a1a-8502-6054c3bb7056?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/ab31266f-e1d5-4406-870c-c41a9608f78b?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -406,10 +412,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -425,17 +431,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/44990b86-604c-4a1a-8502-6054c3bb7056?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/ab31266f-e1d5-4406-870c-c41a9608f78b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"44990b86-604c-4a1a-8502-6054c3bb7056\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"877bf510-fb05-46f4-8cea-9bad6d49cf82\"\r\n + string: "{\r\n \"name\":\"ab31266f-e1d5-4406-870c-c41a9608f78b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"e165af87-addd-4061-8a8c-04c663314ad2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/44990b86-604c-4a1a-8502-6054c3bb7056?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/ab31266f-e1d5-4406-870c-c41a9608f78b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -443,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:34 GMT + - Wed, 13 Jan 2021 01:23:04 GMT expires: - '-1' odata-version: @@ -478,13 +484,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:34.5997033Z\",\"lastModified\":\"2020-09-25T21:43:34.5997033Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:01.4322702Z\",\"lastModified\":\"2021-01-13T01:23:01.6156924Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -494,7 +500,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:34 GMT + - Wed, 13 Jan 2021 01:23:04 GMT expires: - '-1' odata-version: @@ -534,19 +540,19 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:36.5768953Z\",\"lastModified\":\"2020-09-25T21:43:36.5768953Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:07.2896559Z\",\"lastModified\":\"2021-01-13T01:23:07.2896559Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/8d1a2214-5e99-4462-9408-64cc0d0bb30d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/9d34e7ab-f4a8-4f82-8d26-8a36548d722c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -554,11 +560,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:36 GMT + - Wed, 13 Jan 2021 01:23:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/8d1a2214-5e99-4462-9408-64cc0d0bb30d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/9d34e7ab-f4a8-4f82-8d26-8a36548d722c?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -570,10 +576,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -589,17 +595,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/8d1a2214-5e99-4462-9408-64cc0d0bb30d?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/9d34e7ab-f4a8-4f82-8d26-8a36548d722c?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8d1a2214-5e99-4462-9408-64cc0d0bb30d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"877bf510-fb05-46f4-8cea-9bad6d49cf82\"\r\n + string: "{\r\n \"name\":\"9d34e7ab-f4a8-4f82-8d26-8a36548d722c\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"e165af87-addd-4061-8a8c-04c663314ad2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/8d1a2214-5e99-4462-9408-64cc0d0bb30d?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/9d34e7ab-f4a8-4f82-8d26-8a36548d722c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -607,7 +613,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Wed, 13 Jan 2021 01:23:11 GMT expires: - '-1' odata-version: @@ -642,13 +648,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:39.5802108Z\",\"lastModified\":\"2020-09-25T21:43:39.5802108Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:08.0754473Z\",\"lastModified\":\"2021-01-13T01:23:08.3394181Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -658,7 +664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Wed, 13 Jan 2021 01:23:11 GMT expires: - '-1' odata-version: @@ -693,17 +699,17 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:41.1335314Z\",\"lastModified\":\"2020-09-25T21:43:41.1335314Z\",\"hls\":null\r\n - \ }\r\n },{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:41.1335314Z\",\"lastModified\":\"2020-09-25T21:43:41.1335314Z\",\"hls\":null\r\n + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:01.4322702Z\",\"lastModified\":\"2021-01-13T01:23:01.6156924Z\",\"hls\":null\r\n + \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:08.0754473Z\",\"lastModified\":\"2021-01-13T01:23:08.3394181Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -713,7 +719,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Wed, 13 Jan 2021 01:23:13 GMT expires: - '-1' odata-version: @@ -750,27 +756,27 @@ interactions: - -a -g -n --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1c97d282-0996-4513-b922-3ca71e42ecaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/49e24675-6ccd-47cd-8472-73c6b7d5afe3?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/1c97d282-0996-4513-b922-3ca71e42ecaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/49e24675-6ccd-47cd-8472-73c6b7d5afe3?api-version=2020-05-01 pragma: - no-cache server: @@ -780,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted @@ -799,17 +805,17 @@ interactions: - -a -g -n --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1c97d282-0996-4513-b922-3ca71e42ecaa?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/49e24675-6ccd-47cd-8472-73c6b7d5afe3?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c97d282-0996-4513-b922-3ca71e42ecaa\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"877bf510-fb05-46f4-8cea-9bad6d49cf82\"\r\n + string: "{\r\n \"name\":\"49e24675-6ccd-47cd-8472-73c6b7d5afe3\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"e165af87-addd-4061-8a8c-04c663314ad2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1c97d282-0996-4513-b922-3ca71e42ecaa?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/49e24675-6ccd-47cd-8472-73c6b7d5afe3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -817,7 +823,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:44 GMT + - Wed, 13 Jan 2021 01:23:17 GMT expires: - '-1' odata-version: @@ -852,15 +858,15 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:47.7277118Z\",\"lastModified\":\"2020-09-25T21:43:47.7277118Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:01.4322702Z\",\"lastModified\":\"2021-01-13T01:23:01.6156924Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -870,7 +876,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:46 GMT + - Wed, 13 Jan 2021 01:23:19 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_list.yaml index bafd1f7a663..d8a5aa7c931 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_list.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southindia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -12,33 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '305' + - '335' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e1059412-d2e8-4603-9a18-578e137d9423\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"b32098d2-39bb-4d5f-a653-69c892a948f9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:10 GMT + - Wed, 13 Jan 2021 01:22:37 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -71,26 +73,28 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e1059412-d2e8-4603-9a18-578e137d9423\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"b32098d2-39bb-4d5f-a653-69c892a948f9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '667' + - '785' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:11 GMT + - Wed, 13 Jan 2021 01:22:39 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ interactions: body: '{"location": "South India", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": - {"ip": {"allow": []}}}, "encoding": {}, "crossSiteAccessPolicies": {}, "vanityUrl": - false}}' + {"ip": {"allow": []}}}, "encoding": {}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '331' + - '361' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:15.4172689Z\",\"lastModified\":\"2020-09-25T21:43:15.4172689Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1e426095e5f24cc09c3b6093aaf60d78\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:42.7120853Z\",\"lastModified\":\"2021-01-13T01:22:42.7120853Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"391a4b6bfb0e4157b8d44cdf96bd656c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"10fe8678-fbf0-4caf-a8c1-f08f57846c49\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"fa2bc6cd-778d-4548-abbb-6413ce90b349\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/09335b3d-c972-4a7b-a75b-2e8ebd683333?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ee669e8-3489-4f22-9f40-b173fc93c031?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1425' + - '1532' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:15 GMT + - Wed, 13 Jan 2021 01:22:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/09335b3d-c972-4a7b-a75b-2e8ebd683333?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/2ee669e8-3489-4f22-9f40-b173fc93c031?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -178,10 +183,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -197,17 +202,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/09335b3d-c972-4a7b-a75b-2e8ebd683333?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ee669e8-3489-4f22-9f40-b173fc93c031?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"09335b3d-c972-4a7b-a75b-2e8ebd683333\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b7c81ad-3daf-4824-980f-36cd83599882\"\r\n + string: "{\r\n \"name\":\"2ee669e8-3489-4f22-9f40-b173fc93c031\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"5d9988d5-2111-4b31-b733-414ab1cb8861\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/09335b3d-c972-4a7b-a75b-2e8ebd683333?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ee669e8-3489-4f22-9f40-b173fc93c031?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -215,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:18 GMT + - Wed, 13 Jan 2021 01:22:46 GMT expires: - '-1' odata-version: @@ -250,32 +255,33 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:15.4328874Z\",\"lastModified\":\"2020-09-25T21:43:15.7882775Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1e426095e5f24cc09c3b6093aaf60d78\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:42.7432911Z\",\"lastModified\":\"2021-01-13T01:22:43.0029483Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"391a4b6bfb0e4157b8d44cdf96bd656c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"10fe8678-fbf0-4caf-a8c1-f08f57846c49\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"fa2bc6cd-778d-4548-abbb-6413ce90b349\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1531' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Wed, 13 Jan 2021 01:22:46 GMT expires: - '-1' odata-version: @@ -314,15 +320,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"438b2b7d-2374-47a3-a03e-d99d9b54cf34\",\"created\":\"2020-09-25T21:43:21.47Z\",\"lastModified\":\"2020-09-25T21:43:21.47Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"fd360066-5396-4c65-85b6-ef72bbdc7295\",\"created\":\"2021-01-13T01:22:48.97Z\",\"lastModified\":\"2021-01-13T01:22:48.97Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -332,7 +338,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:22 GMT + - Wed, 13 Jan 2021 01:22:50 GMT expires: - '-1' odata-version: @@ -370,19 +376,19 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:24.2755029Z\",\"lastModified\":\"2020-09-25T21:43:24.2755029Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:51.8786307Z\",\"lastModified\":\"2021-01-13T01:22:51.8786307Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/c6b1a6b5-3113-450d-9836-f07c66bb2d8a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/78d4948d-a848-40f0-be3d-3af3178981a4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -390,11 +396,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:25 GMT + - Wed, 13 Jan 2021 01:22:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/c6b1a6b5-3113-450d-9836-f07c66bb2d8a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/78d4948d-a848-40f0-be3d-3af3178981a4?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -406,10 +412,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -425,17 +431,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/c6b1a6b5-3113-450d-9836-f07c66bb2d8a?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/78d4948d-a848-40f0-be3d-3af3178981a4?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c6b1a6b5-3113-450d-9836-f07c66bb2d8a\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b7c81ad-3daf-4824-980f-36cd83599882\"\r\n + string: "{\r\n \"name\":\"78d4948d-a848-40f0-be3d-3af3178981a4\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"5d9988d5-2111-4b31-b733-414ab1cb8861\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/c6b1a6b5-3113-450d-9836-f07c66bb2d8a?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/78d4948d-a848-40f0-be3d-3af3178981a4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -443,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:29 GMT + - Wed, 13 Jan 2021 01:23:00 GMT expires: - '-1' odata-version: @@ -478,13 +484,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:29.4403838Z\",\"lastModified\":\"2020-09-25T21:43:29.4403838Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:53.0048721Z\",\"lastModified\":\"2021-01-13T01:22:53.2908115Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -494,7 +500,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:29 GMT + - Wed, 13 Jan 2021 01:23:01 GMT expires: - '-1' odata-version: @@ -529,15 +535,15 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:31.1292358Z\",\"lastModified\":\"2020-09-25T21:43:31.1292358Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:53.0048721Z\",\"lastModified\":\"2021-01-13T01:22:53.2908115Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -547,7 +553,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:02 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_show.yaml index f83a3299e33..b8d8c1dfb52 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_output_show.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"location": "southeastasia", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}}' + "type": "Primary"}]}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -13,33 +13,35 @@ interactions: Connection: - keep-alive Content-Length: - - '308' + - '338' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"a18e594c-0ca9-449c-9b6d-96122d6d35aa\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"201b3583-c27b-49e2-8edc-2e165910ae5e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:17 GMT + - Wed, 13 Jan 2021 01:23:03 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 201 message: Created @@ -72,26 +74,28 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"a18e594c-0ca9-449c-9b6d-96122d6d35aa\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"201b3583-c27b-49e2-8edc-2e165910ae5e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ }\r\n ]\r\n }\r\n}" + \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '670' + - '788' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:18 GMT + - Wed, 13 Jan 2021 01:23:04 GMT expires: - '-1' odata-version: @@ -115,8 +119,8 @@ interactions: body: '{"location": "Southeast Asia", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": - {"ip": {"allow": []}}}, "encoding": {}, "crossSiteAccessPolicies": {}, "vanityUrl": - false}}' + {"ip": {"allow": []}}}, "encoding": {}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -127,47 +131,48 @@ interactions: Connection: - keep-alive Content-Length: - - '334' + - '364' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Southeast - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:21.3824468Z\",\"lastModified\":\"2020-09-25T21:43:21.3824468Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"fa6378e53da74e7eadd66baadb7e2b20\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:08.862485Z\",\"lastModified\":\"2021-01-13T01:23:08.862485Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"91d8deeb273c4b679f548d178d2b77f0\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"54a2e5d9-b8cd-4ce0-bbf4-6a632f96b692\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"768d7b96-afae-4b36-9287-4bb69d1a8938\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b0605df7-61be-49e7-aca5-6bef16fc9a37?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e989d320-99f1-4190-9fea-821c67e00778?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1428' + - '1533' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:21 GMT + - Wed, 13 Jan 2021 01:23:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b0605df7-61be-49e7-aca5-6bef16fc9a37?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e989d320-99f1-4190-9fea-821c67e00778?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -179,10 +184,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -198,17 +203,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b0605df7-61be-49e7-aca5-6bef16fc9a37?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e989d320-99f1-4190-9fea-821c67e00778?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b0605df7-61be-49e7-aca5-6bef16fc9a37\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"2b1b8dfb-9f20-42ea-9f39-318559a64b50\"\r\n + string: "{\r\n \"name\":\"e989d320-99f1-4190-9fea-821c67e00778\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"fddd96da-e1dc-4a5b-abea-3ed058908d39\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b0605df7-61be-49e7-aca5-6bef16fc9a37?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e989d320-99f1-4190-9fea-821c67e00778?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -216,7 +221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:25 GMT + - Wed, 13 Jan 2021 01:23:12 GMT expires: - '-1' odata-version: @@ -251,32 +256,33 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2018-07-01&autoStart=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Southeast - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:21.3980735Z\",\"lastModified\":\"2020-09-25T21:43:21.6401017Z\",\"vanityUrl\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"fa6378e53da74e7eadd66baadb7e2b20\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:08.8780848Z\",\"lastModified\":\"2021-01-13T01:23:09.1206136Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"91d8deeb273c4b679f548d178d2b77f0\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"54a2e5d9-b8cd-4ce0-bbf4-6a632f96b692\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"768d7b96-afae-4b36-9287-4bb69d1a8938\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"None\",\"presetName\":null\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\r\n + \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1427' + - '1534' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:25 GMT + - Wed, 13 Jan 2021 01:23:12 GMT expires: - '-1' odata-version: @@ -315,15 +321,15 @@ interactions: - -a -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-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"42e80f1f-2355-4b91-ba82-bccc41f4aa3b\",\"created\":\"2020-09-25T21:43:27.113Z\",\"lastModified\":\"2020-09-25T21:43:27.113Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"b4b6dfd3-2d74-471c-be98-3e20429274ac\",\"created\":\"2021-01-13T01:23:14.973Z\",\"lastModified\":\"2021-01-13T01:23:14.973Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -333,7 +339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:27 GMT + - Wed, 13 Jan 2021 01:23:14 GMT expires: - '-1' odata-version: @@ -347,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -371,19 +377,19 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2020-09-25T21:43:29.6340794Z\",\"lastModified\":\"2020-09-25T21:43:29.6340794Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:17.3518788Z\",\"lastModified\":\"2021-01-13T01:23:17.3518788Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/04fcfe8b-b855-4e42-8713-375c90d569ed?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/98704b77-759a-4ce8-8f93-5b5d08cfebd2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -391,11 +397,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Wed, 13 Jan 2021 01:23:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/04fcfe8b-b855-4e42-8713-375c90d569ed?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006/operationlocations/98704b77-759a-4ce8-8f93-5b5d08cfebd2?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -407,10 +413,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -426,17 +432,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/04fcfe8b-b855-4e42-8713-375c90d569ed?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/98704b77-759a-4ce8-8f93-5b5d08cfebd2?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"04fcfe8b-b855-4e42-8713-375c90d569ed\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"2b1b8dfb-9f20-42ea-9f39-318559a64b50\"\r\n + string: "{\r\n \"name\":\"98704b77-759a-4ce8-8f93-5b5d08cfebd2\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"fddd96da-e1dc-4a5b-abea-3ed058908d39\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/04fcfe8b-b855-4e42-8713-375c90d569ed?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/98704b77-759a-4ce8-8f93-5b5d08cfebd2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -444,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:33 GMT + - Wed, 13 Jan 2021 01:23:21 GMT expires: - '-1' odata-version: @@ -479,13 +485,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:34.5153588Z\",\"lastModified\":\"2020-09-25T21:43:34.5153588Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:18.1656753Z\",\"lastModified\":\"2021-01-13T01:23:18.3402764Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -495,7 +501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:33 GMT + - Wed, 13 Jan 2021 01:23:21 GMT expires: - '-1' odata-version: @@ -530,15 +536,15 @@ interactions: - -a -n -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2020-09-25T21:43:36.2857045Z\",\"lastModified\":\"2020-09-25T21:43:36.2857045Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000007\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:18.1656753Z\",\"lastModified\":\"2021-01-13T01:23:18.3402764Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -548,7 +554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:36 GMT + - Wed, 13 Jan 2021 01:23:23 GMT expires: - '-1' odata-version: @@ -583,11 +589,11 @@ interactions: - -a -n -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/live-output000008/liveOutputs/lo000006?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/live-output000008/liveOutputs/lo000006?api-version=2020-05-01 response: body: string: '{"error":{"code":"ParentResourceNotFound","message":"Can not perform @@ -601,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:36 GMT + - Wed, 13 Jan 2021 01:23:23 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py new file mode 100644 index 00000000000..d530df39525 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, KeyVaultPreparer + + +class AmsEncryptionTests(ScenarioTest): + @ResourceGroupPreparer(location='centralus') + @StorageAccountPreparer(parameter_name='storage_account_for_create') + @KeyVaultPreparer(location='centralus') + def test_ams_encryption_set_show(self, resource_group, storage_account_for_create, key_vault): + amsname = self.create_random_name(prefix='ams', length=12) + + self.kwargs.update({ + 'amsname': amsname, + 'storageAccount': storage_account_for_create, + 'location': 'centralus', + 'keySource': 'CustomerKey', + 'keyVault': key_vault, + 'keyName': self.create_random_name(prefix='ams', length=12), + 'identityPermissions': "get unwrapkey wrapkey", + }) + + account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --managed-identity', checks=[ + self.check('name', '{amsname}'), + self.check('location', 'Central US') + ]) + + self.cmd('keyvault create --name {keyVault} -g {rg} --enable-soft-delete --enable-purge-protection') + key_vault_result = self.cmd('keyvault key create --name {keyName} --vault-name {keyVault}') + + print(key_vault_result.get_output_in_json()) + + self.kwargs['keyVaultId'] = key_vault_result.get_output_in_json()['key']['kid'] + self.kwargs['principalId'] = account_result.get_output_in_json()['identity']['principalId'] + + self.cmd('keyvault set-policy --object-id {principalId} --name {keyVault} --key-permissions {identityPermissions}') + + self.cmd('az ams account encryption set -a {amsname} -g {rg} --key-source {keySource} --key-vault-id {keyVaultId}', checks=[ + self.check('name', '{amsname}'), + ]) + + self.cmd('az ams account encryption show -a {amsname} -g {rg}', checks=[ + self.check('keyVaultProperties.keyIdentifier', '{keyVaultId}') + ]) + + self.cmd('az ams account delete -n {amsname} -g {rg}') + self.cmd('az keyvault delete -n {keyVault} -g {rg}') \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py index 16fc6b7cf95..01512143d98 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py @@ -4,6 +4,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import LiveScenarioTest, ResourceGroupPreparer, StorageAccountPreparer +from azure.cli.core.util import CLIError class AmsMruTests(LiveScenarioTest): @@ -20,14 +21,17 @@ def test_ams_mru(self, storage_account_for_create): 'type': 'S3', }) - self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}') + account_info = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}') - self.cmd('az ams account mru set -n {amsname} -g {rg} --count {count} --type {type}', checks=[ - self.check('count', '{count}'), - self.check('type', '{type}') - ]) + if account_info.get_output_in_json()['encryption']: + self.cmd('az ams account mru set -n {amsname} -g {rg} --count {count} --type {type}', expect_failure=True) + else: + self.cmd('az ams account mru set -n {amsname} -g {rg} --count {count} --type {type}', checks=[ + self.check('count', '{count}'), + self.check('type', '{type}') + ]) - self.cmd('az ams account mru show -n {amsname} -g {rg}', checks=[ - self.check('count', '{count}'), - self.check('type', '{type}') - ]) + self.cmd('az ams account mru show -n {amsname} -g {rg}', checks=[ + self.check('count', '{count}'), + self.check('type', '{type}') + ]) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py index 222ce2529a2..b2c5422e01b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py @@ -18,9 +18,10 @@ def test_ams_create_show(self, resource_group, storage_account_for_create): 'location': 'centralus' }) - self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --managed-identity', checks=[ self.check('name', '{amsname}'), - self.check('location', 'Central US') + self.check('location', 'Central US'), + self.check('identity.type', 'SystemAssigned') ]) self.cmd('az ams account update -n {amsname} -g {rg} --tags key=value', checks=[ diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py index 55b23f23df3..4b9a4ba9812 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py @@ -16,6 +16,7 @@ class AmsLiveEventTests(ScenarioTest): def test_live_event_create(self, storage_account_for_create): amsname = self.create_random_name(prefix='ams', length=12) live_event_name = self.create_random_name(prefix='le', length=12) + customHostnamePrefix = self.create_random_name(prefix='custom', length=12) self.kwargs.update({ 'amsname': amsname, @@ -26,7 +27,10 @@ def test_live_event_create(self, storage_account_for_create): 'encodingType': 'Basic', 'tags': 'key=value', 'previewLocator': self.create_guid(), - 'keyFrameIntervalDuration': 'PT2S', + 'keyFrameInterval': 'PT2S', + 'liveTranscriptionLanguage': 'ca-ES', + 'customHostnamePrefix': customHostnamePrefix, + 'stretchMode': 'AutoSize', 'description': 'asd', 'accessToken': '0abf356884d74b4aacbd7b1ebd3da0f7', 'clientAccessPolicy': '@' + _get_test_data_file('clientAccessPolicy.xml'), @@ -38,23 +42,25 @@ def test_live_event_create(self, storage_account_for_create): self.check('location', 'Central US') ]) - live_event = self.cmd('az ams live-event create -a {amsname} -n {liveEventName} -g {rg} --auto-start --streaming-protocol {streamingProtocol} --encoding-type {encodingType} --tags {tags} --stream-options Default LowLatency --preview-locator {previewLocator} --ips 1.2.3.4 5.6.7.8 192.168.0.0/28 --preview-ips 192.168.0.0/28 0.0.0.0 --key-frame-interval-duration {keyFrameIntervalDuration} --access-token {accessToken} --description {description} --client-access-policy "{clientAccessPolicy}" --cross-domain-policy "{crossDomainPolicy}" --vanity-url', checks=[ + live_event = self.cmd('az ams live-event create -a {amsname} -n {liveEventName} -g {rg} --auto-start --live-transcription-language {liveTranscriptionLanguage} --streaming-protocol {streamingProtocol} --encoding-type {encodingType} --key-frame-interval {keyFrameInterval} --tags {tags} --stream-options Default LowLatency --preview-locator {previewLocator} --ips 1.2.3.4 5.6.7.8 192.168.0.0/28 --preview-ips 192.168.0.0/28 0.0.0.0 --access-token {accessToken} --description {description} --client-access-policy "{clientAccessPolicy}" --cross-domain-policy "{crossDomainPolicy}" --use-static-hostname --custom-hostname-prefix {customHostnamePrefix} --stretch-mode {stretchMode}', checks=[ self.check('name', '{liveEventName}'), self.check('location', 'Central US'), self.check('input.streamingProtocol', '{streamingProtocol}'), self.check('encoding.encodingType', '{encodingType}'), + self.check('encoding.keyFrameInterval', '0:00:02'), + self.check('encoding.stretchMode', '{stretchMode}'), + self.check('transcriptions[0].language', '{liveTranscriptionLanguage}'), self.check('length(preview.accessControl.ip.allow)', 2), self.check('length(input.accessControl.ip.allow)', 3), self.check('preview.previewLocator', '{previewLocator}'), - self.check('input.keyFrameIntervalDuration', '{keyFrameIntervalDuration}'), self.check('length(streamOptions)', 2), self.check('description', '{description}'), self.check('input.accessToken', '{accessToken}'), - self.check('vanityUrl', True), + self.check('useStaticHostname', True), self.check('input.accessControl.ip.allow[2].address', '192.168.0.0'), self.check('input.accessControl.ip.allow[2].subnetPrefixLength', '28'), self.check('preview.accessControl.ip.allow[0].address', '192.168.0.0'), - self.check('preview.accessControl.ip.allow[0].subnetPrefixLength', '28') + self.check('preview.accessControl.ip.allow[0].subnetPrefixLength', '28'), ]).get_output_in_json() self.assertIsNotNone(live_event['crossSiteAccessPolicies']['crossDomainPolicy']) @@ -103,6 +109,43 @@ def test_live_event_start(self, storage_account_for_create): self.assertNotEquals('Stopping', live_event['resourceState']) self.assertNotEquals('Stopped', live_event['resourceState']) + @ResourceGroupPreparer() + @StorageAccountPreparer(parameter_name='storage_account_for_create') + def test_live_event_standby(self, storage_account_for_create): + amsname = self.create_random_name(prefix='ams', length=12) + live_event_name = self.create_random_name(prefix='le', length=12) + + self.kwargs.update({ + 'amsname': amsname, + 'storageAccount': storage_account_for_create, + 'location': 'southindia', + 'streamingProtocol': 'FragmentedMP4', + 'liveEventName': live_event_name, + 'encodingType': 'Basic' + }) + + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ + self.check('name', '{amsname}'), + self.check('location', 'South India') + ]) + + self.cmd('az ams live-event create -a {amsname} -n {liveEventName} -g {rg} --streaming-protocol {streamingProtocol} --encoding-type {encodingType} --tags key=value --ips AllowAll', checks=[ + self.check('name', '{liveEventName}'), + self.check('location', 'South India'), + self.check('input.streamingProtocol', 'FragmentedMP4'), + self.check('encoding.encodingType', 'Basic') + ]) + + live_event = self.cmd('az ams live-event standby -a {amsname} --name {liveEventName} -g {rg}', checks=[ + self.check('name', '{liveEventName}'), + self.check('location', 'South India'), + self.check('input.streamingProtocol', 'FragmentedMP4') + ]).get_output_in_json() + + self.assertNotEquals('Stopping', live_event['resourceState']) + self.assertNotEquals('Stopped', live_event['resourceState']) + self.assertEquals('StandBy', live_event['resourceState']) + @ResourceGroupPreparer() @StorageAccountPreparer(parameter_name='storage_account_for_create') def test_live_event_stop(self, storage_account_for_create): @@ -349,7 +392,6 @@ def test_live_event_show(self, storage_account_for_create): 'encodingType': 'Basic', 'tags': 'key=value', 'previewLocator': self.create_guid(), - 'keyFrameIntervalDuration': 'PT2S', 'description': 'asd', 'accessToken': '0abf356884d74b4aacbd7b1ebd3da0f7', 'clientAccessPolicy': '@' + _get_test_data_file('clientAccessPolicy.xml'), @@ -361,7 +403,7 @@ def test_live_event_show(self, storage_account_for_create): self.check('location', 'West US') ]) - self.cmd('az ams live-event create -a {amsname} -n {liveEventName} -g {rg} --streaming-protocol {streamingProtocol} --encoding-type {encodingType} --tags {tags} --stream-options Default LowLatency --preview-locator {previewLocator} --ips 1.2.3.4 5.6.7.8 9.10.11.12 --preview-ips 1.1.1.1 0.0.0.0 --key-frame-interval-duration {keyFrameIntervalDuration} --access-token {accessToken} --description {description} --client-access-policy "{clientAccessPolicy}" --cross-domain-policy "{crossDomainPolicy}" --vanity-url') + self.cmd('az ams live-event create -a {amsname} -n {liveEventName} -g {rg} --streaming-protocol {streamingProtocol} --encoding-type {encodingType} --tags {tags} --stream-options Default LowLatency --preview-locator {previewLocator} --ips 1.2.3.4 5.6.7.8 9.10.11.12 --preview-ips 1.1.1.1 0.0.0.0 --access-token {accessToken} --description {description} --client-access-policy "{clientAccessPolicy}" --cross-domain-policy "{crossDomainPolicy}"') self.cmd('az ams live-event show -a {amsname} -n {liveEventName} -g {rg}', checks=[ self.check('name', '{liveEventName}'), @@ -371,11 +413,9 @@ def test_live_event_show(self, storage_account_for_create): self.check('length(preview.accessControl.ip.allow)', 2), self.check('length(input.accessControl.ip.allow)', 3), self.check('preview.previewLocator', '{previewLocator}'), - self.check('input.keyFrameIntervalDuration', '{keyFrameIntervalDuration}'), self.check('length(streamOptions)', 2), self.check('description', '{description}'), - self.check('input.accessToken', '{accessToken}'), - self.check('vanityUrl', True) + self.check('input.accessToken', '{accessToken}') ]) nonexits_live_event_name = self.create_random_name(prefix='live-event', length=20) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py index 2a09b2da27e..7fa5bc6b8f6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py @@ -169,16 +169,20 @@ def test_ams_transform_output_add(self, storage_account_for_output_add): 'audioLanguage': 'es-ES', 'audioLanguage2': 'en-US', 'insightsToExtract': 'AudioInsightsOnly', - 'resolution': 'SourceResolution' + 'resolution': 'SourceResolution', + 'audioAnalysisMode': 'Basic', + 'videoAnalysisMode': 'Basic' }) - self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName} --audio-language {audioLanguage}', checks=[ - self.check('outputs[2].preset.audioLanguage', '{audioLanguage}') + self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName} --audio-language {audioLanguage} --audio-analysis-mode {audioAnalysisMode}', checks=[ + self.check('outputs[2].preset.audioLanguage', '{audioLanguage}'), + self.check('outputs[2].preset.mode', '{audioAnalysisMode}') ]) - self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName2} --audio-language {audioLanguage2} --insights-to-extract {insightsToExtract}', checks=[ + self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName2} --audio-language {audioLanguage2} --insights-to-extract {insightsToExtract} --video-analysis-mode {videoAnalysisMode}', checks=[ self.check('outputs[3].preset.audioLanguage', '{audioLanguage2}'), - self.check('outputs[3].preset.insightsToExtract', '{insightsToExtract}') + self.check('outputs[3].preset.insightsToExtract', '{insightsToExtract}'), + self.check('outputs[3].preset.mode', '{videoAnalysisMode}'), ]) self.cmd('az ams transform output add -a {amsname} -n {transformName} -g {rg} --preset {presetName3} --resolution {resolution}', checks=[ From 24097100ab2def8d1046080ee43d71b30be61a1a Mon Sep 17 00:00:00 2001 From: hivyas Date: Wed, 20 Jan 2021 13:54:03 -0800 Subject: [PATCH 17/30] style check changes --- .../cli/command_modules/ams/_completers.py | 6 +++- .../azure/cli/command_modules/ams/_help.py | 6 ++-- .../azure/cli/command_modules/ams/_params.py | 4 +-- .../cli/command_modules/ams/_sdk_utils.py | 9 ++++-- .../azure/cli/command_modules/ams/commands.py | 4 +-- .../command_modules/ams/operations/account.py | 16 ++++++---- .../ams/operations/encryption.py | 31 ++++++++++--------- .../ams/operations/live_event.py | 19 +++++++----- .../cli/command_modules/ams/operations/mru.py | 10 +++--- .../ams/operations/transform.py | 22 +++++++------ .../test_ams_account_encryption_scenarios.py | 4 +-- .../latest/test_ams_account_mru_scenarios.py | 6 ++-- 12 files changed, 79 insertions(+), 58 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index e93748343ba..2b46f24dcac 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -78,18 +78,22 @@ def get_encoding_types_list(): encoding_types = get_encoding_types() return encoding_types + def get_allowed_transcription_languages(): languages = get_transcription_langauges() return languages + def get_allowed_analysis_modes(): modes = get_analysis_modes() return modes + def get_stretch_mode_types_list(): modes = get_stretch_mode_types() return modes + def get_storage_authentication_allowed_values_list(): values = get_storage_authentication_allowed_values() - return values \ No newline at end of file + return values diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 63a39488aec..216e65393bf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -53,12 +53,12 @@ """ helps['ams account encryption show'] = """ - type: group + type: command short-summary: Show the details of encryption settings for an Azure Media Services account. """ helps['ams account encryption set'] = """ - type: group + type: command short-summary: Set the encryption settings for an Azure Media Services account. """ @@ -107,7 +107,7 @@ helps['ams account storage set-authentication'] = """ type: command - short-summary: Set the authentication of a storage account attached to an Azure Media Services account. + short-summary: Set the authentication of a storage account attached to an Azure Media Services account. """ helps['ams transform'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index e9eec735921..f94b3adc6bb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -60,12 +60,12 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account') as c: c.argument('location', arg_type=get_location_type(self.cli_ctx), - validator=get_default_location_from_resource_group, required=True) + validator=get_default_location_from_resource_group, required=False) c.argument('tags', arg_type=tags_type) with self.argument_context('ams account create') as c: c.argument('storage_account', storage_account_arg_type, - help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.'), + help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.') c.argument('managed_identity', help='Set this flag to enable managed identity on the account.') with self.argument_context('ams account check-name') as c: diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 7becc7879be..41add8a8a29 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -61,14 +61,19 @@ def get_media_type(): def get_encoding_types(): return ['Basic', 'None', 'Standard'] + def get_transcription_langauges(): - return ['ca-ES', 'da-DK', 'de-DE', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-US', 'es-ES', 'es-MX', 'fi-FI', 'fr-CA', 'fr-FR', 'it-IT', 'nl-NL', 'pt-BR', 'pt-PT', 'sv-SE'] + return ['ca-ES', 'da-DK', 'de-DE', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-US', 'es-ES', + 'es-MX', 'fi-FI', 'fr-CA', 'fr-FR', 'it-IT', 'nl-NL', 'pt-BR', 'pt-PT', 'sv-SE'] + def get_analysis_modes(): return ['Standard', 'Basic'] + def get_stretch_mode_types(): return ['None', 'AutoSize', 'AutoFit'] + def get_storage_authentication_allowed_values(): - return ['System', 'ManagedIdentity'] \ No newline at end of file + return ['System', 'ManagedIdentity'] diff --git a/src/azure-cli/azure/cli/command_modules/ams/commands.py b/src/azure-cli/azure/cli/command_modules/ams/commands.py index f61d2fa0ecc..3b0a9e2b5b0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/commands.py +++ b/src/azure-cli/azure/cli/command_modules/ams/commands.py @@ -69,9 +69,9 @@ def get_custom_sdk(custom_module, client_factory): with self.command_group('ams account encryption', get_sdk('Mediaservices', get_mediaservices_client)) as g: g.custom_show_command('show', 'get_encryption', - custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) + custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) g.custom_command('set', 'set_encryption', - custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) + custom_command_type=get_custom_sdk('encryption', get_mediaservices_client)) with self.command_group('ams transform', get_sdk('Transforms', get_transforms_client)) as g: g.custom_show_command('show', 'get_transform', diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index 6e4aaf5b366..dde47d12e39 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -17,7 +17,8 @@ def list_mediaservices(client, resource_group_name=None): return client.list(resource_group_name) if resource_group_name else client.list_by_subscription() -def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, managed_identity=False, tags=None): +def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, + managed_identity=False, tags=None): storage_account_primary = StorageAccount(type='Primary', id=storage_account) return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary], @@ -54,10 +55,13 @@ def remove_mediaservice_secondary_storage(client, resource_group_name, account_n ams.location, ams.tags) -def set_mediaservice_trusted_storage(client, resource_group_name, account_name, storage_account, storage_authentication): + +def set_mediaservice_trusted_storage(client, resource_group_name, account_name, + storage_authentication): ams = client.get(resource_group_name, account_name) - media_service = MediaService(location=ams.location, storage_accounts=ams.storage_accounts, storage_authentication=storage_authentication) - + media_service = MediaService(location=ams.location, storage_accounts=ams.storage_accounts, + storage_authentication=storage_authentication) + return client.create_or_update(resource_group_name, account_name, media_service) @@ -65,8 +69,8 @@ def create_or_update_mediaservice(client, resource_group_name, account_name, sto location=None, managed_identity=False, tags=None): identity = 'SystemAssigned' if managed_identity else 'None' - media_service = MediaService(location=location, storage_accounts=storage_accounts, identity=MediaServiceIdentity(type=identity), - tags=tags) + media_service = MediaService(location=location, storage_accounts=storage_accounts, + identity=MediaServiceIdentity(type=identity), tags=tags) return client.create_or_update(resource_group_name, account_name, media_service) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index df3e00881ca..42226fabcb7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -5,33 +5,34 @@ # pylint: disable=redefined-builtin -import json -import requests -from azure.cli.core.util import CLIError from azure.cli.core.azclierror import BadRequestError -from azure.cli.command_modules.ams._completers import get_mru_type_completion_list -from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client -from azure.mgmt.media.models import (MediaService, AccountEncryption, KeyVaultProperties) +from azure.mgmt.media.models import (MediaService, AccountEncryption, KeyVaultProperties, + ApiErrorException) -def get_encryption(cmd, client, resource_group_name, account_name): + +def get_encryption(client, resource_group_name, account_name): account_info = client.get(resource_group_name, - account_name) if resource_group_name else client.get_by_subscription(account_name) + account_name) if resource_group_name else client.get_by_subscription(account_name) return account_info.encryption -def set_encryption(cmd, client, resource_group_name, account_name, key_source=None, key_version=None, key_vault_id=None): + +def set_encryption(client, resource_group_name, account_name, key_source=None, + key_version=None, key_vault_id=None): try: account_info = client.get(resource_group_name, - account_name) if resource_group_name else client.get_by_subscription(account_name) + account_name) if resource_group_name else client.get_by_subscription(account_name) if key_source == 'CustomerKey': - key_vault_props = KeyVaultProperties(key_identifier = key_vault_id, current_key_identifier = key_version) + key_vault_props = KeyVaultProperties(key_identifier=key_vault_id, current_key_identifier=key_version) else: key_vault_props = None encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) - media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) + media_service = MediaService(location=account_info.location, identity=account_info.identity, + storage_accounts=account_info.storage_accounts, encryption=encryption) return client.create_or_update(resource_group_name, account_name, media_service) - except Exception as ex: + except ApiErrorException as ex: recommendation = '' if ex.message == '(BadRequest) Access to the Customer Key was forbidden.': - recommendation = 'Please use the Azure Portal to grant the key vault access to the media account. For more information please visit https://aka.ms/keyvaultaccess' - raise BadRequestError(ex, recommendation) \ No newline at end of file + recommendation = 'Please use the Azure Portal to grant the key vault access to the media account.'\ + 'For more information please visit https://aka.ms/keyvaultaccess' + raise BadRequestError(ex, recommendation) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py index f61fc5e3e3f..c04765c78f8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py @@ -13,11 +13,11 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, streaming_protocol, ips, # pylint: disable=too-many-locals - auto_start=False, encoding_type=None, preset_name=None, stretch_mode=None, key_frame_interval=None, tags=None, description=None, - key_frame_interval_duration=None, access_token=None, no_wait=False, preview_ips=None, - preview_locator=None, streaming_policy_name=None, alternative_media_id=None, - client_access_policy=None, cross_domain_policy=None, stream_options=None, live_transcription_language=None, - use_static_hostname=False, custom_hostname_prefix=None): + auto_start=False, encoding_type=None, preset_name=None, stretch_mode=None, key_frame_interval=None, + tags=None, description=None, key_frame_interval_duration=None, access_token=None, no_wait=False, + preview_ips=None, preview_locator=None, streaming_policy_name=None, alternative_media_id=None, + client_access_policy=None, cross_domain_policy=None, stream_options=None, + live_transcription_language=None, use_static_hostname=False, custom_hostname_prefix=None): from azure.cli.command_modules.ams._client_factory import (get_mediaservices_client) @@ -48,9 +48,11 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre policies = create_cross_site_access_policies(client_access_policy, cross_domain_policy) live_event = LiveEvent(input=live_event_input, location=location, preview=live_event_preview, - encoding=LiveEventEncoding(encoding_type=encoding_type, preset_name=preset_name, stretch_mode=stretch_mode, key_frame_interval=key_frame_interval), - tags=tags, stream_options=stream_options, - cross_site_access_policies=policies, description=description, transcriptions=transcriptions, use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname_prefix) + encoding=LiveEventEncoding(encoding_type=encoding_type, preset_name=preset_name, + stretch_mode=stretch_mode, key_frame_interval=key_frame_interval), + tags=tags, stream_options=stream_options, cross_site_access_policies=policies, + description=description, transcriptions=transcriptions, + use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname_prefix) return sdk_no_wait(no_wait, client.create, resource_group_name=resource_group_name, account_name=account_name, live_event_name=live_event_name, parameters=live_event, auto_start=auto_start) @@ -96,6 +98,7 @@ def start(cmd, client, resource_group_name, account_name, live_event_name, no_wa return client.get(resource_group_name, account_name, live_event_name) + def standby(cmd, client, resource_group_name, account_name, live_event_name, no_wait=False): if no_wait: return sdk_no_wait(no_wait, client.allocate, resource_group_name, account_name, live_event_name) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index f093543e621..7fe1e174aae 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -18,18 +18,20 @@ def get_mru(client, cmd, resource_group_name, account_name): account_info = client.get(resource_group_name, - account_name) if resource_group_name else client.get_by_subscription(account_name) + account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported by the CLI. Please use the Azure Portal to scale Media Reserved Units.') + raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported' + ' by the CLI. Please use the Azure Portal to scale Media Reserved Units.') mru = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name).get_mru() return _map_mru(mru) def set_mru(client, cmd, resource_group_name, account_name, count=None, type=None): account_info = client.get(resource_group_name, - account_name) if resource_group_name else client.get_by_subscription(account_name) + account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported by the CLI. Please use the Azure Portal to scale Media Reserved Units.') + raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported' + ' by the CLI. Please use the Azure Portal to scale Media Reserved Units.') client = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name) mru = client.get_mru() diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index 14315d92f2a..c404dc368cf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py @@ -17,33 +17,35 @@ def create_transform(client, account_name, resource_group_name, transform_name, preset, - insights_to_extract=None, video_analysis_mode=None, audio_language=None, audio_analysis_mode=None, on_error=None, - relative_priority=None, description=None, resolution=None): + insights_to_extract=None, video_analysis_mode=None, audio_language=None, + audio_analysis_mode=None, on_error=None, relative_priority=None, + description=None, resolution=None): - outputs = [build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, - on_error, relative_priority, resolution)] + outputs = [build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, + audio_analysis_mode, on_error, relative_priority, resolution)] return client.create_or_update(resource_group_name, account_name, transform_name, outputs, description) def add_transform_output(client, account_name, resource_group_name, transform_name, preset, - insights_to_extract=None, video_analysis_mode=None, audio_language=None, audio_analysis_mode=None, on_error=None, - relative_priority=None, resolution=None): + insights_to_extract=None, video_analysis_mode=None, audio_language=None, + audio_analysis_mode=None, on_error=None, relative_priority=None, resolution=None): transform = client.get(resource_group_name, account_name, transform_name) if not transform: show_resource_not_found_message(resource_group_name, account_name, 'transforms', transform_name) - transform.outputs.append(build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, - on_error, relative_priority, resolution)) + transform.outputs.append(build_transform_output(preset, insights_to_extract, video_analysis_mode, + audio_language, audio_analysis_mode, on_error, + relative_priority, resolution)) return client.create_or_update(resource_group_name, account_name, transform_name, transform.outputs) -def build_transform_output(preset, insights_to_extract, video_analysis_mode, audio_language, audio_analysis_mode, on_error, - relative_priority, resolution): +def build_transform_output(preset, insights_to_extract, video_analysis_mode, + audio_language, audio_analysis_mode, on_error, relative_priority, resolution): validate_arguments(preset, insights_to_extract, audio_language, resolution) transform_output = get_transform_output(preset) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py index d530df39525..aab6f547064 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -43,8 +43,8 @@ def test_ams_encryption_set_show(self, resource_group, storage_account_for_creat ]) self.cmd('az ams account encryption show -a {amsname} -g {rg}', checks=[ - self.check('keyVaultProperties.keyIdentifier', '{keyVaultId}') + self.check('keyVaultProperties.keyIdentifier', '{keyVaultId}') ]) self.cmd('az ams account delete -n {amsname} -g {rg}') - self.cmd('az keyvault delete -n {keyVault} -g {rg}') \ No newline at end of file + self.cmd('az keyvault delete -n {keyVault} -g {rg}') diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py index 01512143d98..b9852423f68 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_mru_scenarios.py @@ -27,9 +27,9 @@ def test_ams_mru(self, storage_account_for_create): self.cmd('az ams account mru set -n {amsname} -g {rg} --count {count} --type {type}', expect_failure=True) else: self.cmd('az ams account mru set -n {amsname} -g {rg} --count {count} --type {type}', checks=[ - self.check('count', '{count}'), - self.check('type', '{type}') - ]) + self.check('count', '{count}'), + self.check('type', '{type}') + ]) self.cmd('az ams account mru show -n {amsname} -g {rg}', checks=[ self.check('count', '{count}'), From 970a32bcb5ee8c5799719c6fc95c0ac0481df222 Mon Sep 17 00:00:00 2001 From: hivyas Date: Wed, 20 Jan 2021 15:25:59 -0800 Subject: [PATCH 18/30] reran encryption test --- azure-cli2017.pyproj | 1 + .../azure/cli/command_modules/ams/_params.py | 6 +- .../command_modules/ams/operations/account.py | 4 +- .../ams/operations/live_event.py | 8 +- .../test_ams_encryption_set_show.yaml | 108 +++++++++--------- 5 files changed, 64 insertions(+), 63 deletions(-) diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 8f615e654bf..0587ae7541a 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -214,6 +214,7 @@ + diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index f94b3adc6bb..af5f70f2581 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -87,7 +87,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('id', required=True) with self.argument_context('ams account storage set-authentication') as c: - c.argument('storage_authentication', help='Allowed values: {}'.format(", ".join(get_storage_authentication_allowed_values_list()))) + c.argument('storage_auth', help='Allowed values: {}'.format(", ".join(get_storage_authentication_allowed_values_list()))) with self.argument_context('ams account sp') as c: c.argument('account_name', account_name_arg_type) @@ -369,9 +369,9 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('client_access_policy', arg_group='Cross Site Access Policies', help='Filepath to the clientaccesspolicy.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('cross_domain_policy', arg_group='Cross Site Access Policies', help='Filepath to the crossdomain.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('stream_options', nargs='+', arg_type=get_enum_type(StreamOptionsFlag), help='The options to use for the LiveEvent. This value is specified at creation time and cannot be updated.') - c.argument('live_transcription_language', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) + c.argument('transcription_language', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state') - c.argument('custom_hostname_prefix', help='When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') + c.argument('custom_hostname', help='When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') c.argument('remove_outputs_on_stop', action='store_true', help='Remove live outputs on stop.') with self.argument_context('ams live-event list') as c: diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index dde47d12e39..d64b104ce5a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -57,10 +57,10 @@ def remove_mediaservice_secondary_storage(client, resource_group_name, account_n def set_mediaservice_trusted_storage(client, resource_group_name, account_name, - storage_authentication): + storage_auth): ams = client.get(resource_group_name, account_name) media_service = MediaService(location=ams.location, storage_accounts=ams.storage_accounts, - storage_authentication=storage_authentication) + storage_authentication=storage_auth) return client.create_or_update(resource_group_name, account_name, media_service) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py index c04765c78f8..87db8e24eb4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py @@ -17,7 +17,7 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre tags=None, description=None, key_frame_interval_duration=None, access_token=None, no_wait=False, preview_ips=None, preview_locator=None, streaming_policy_name=None, alternative_media_id=None, client_access_policy=None, cross_domain_policy=None, stream_options=None, - live_transcription_language=None, use_static_hostname=False, custom_hostname_prefix=None): + transcription_language=None, use_static_hostname=False, custom_hostname=None): from azure.cli.command_modules.ams._client_factory import (get_mediaservices_client) @@ -30,8 +30,8 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre live_event_input_access_control = LiveEventInputAccessControl(ip=IPAccessControl(allow=allowed_ips)) transcriptions = [] - if live_transcription_language: - transcriptions = [{'language': live_transcription_language}] + if transcription_language: + transcriptions = [{'language': transcription_language}] live_event_input = LiveEventInput(streaming_protocol=LiveEventInputProtocol(streaming_protocol), access_token=access_token, @@ -52,7 +52,7 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre stretch_mode=stretch_mode, key_frame_interval=key_frame_interval), tags=tags, stream_options=stream_options, cross_site_access_policies=policies, description=description, transcriptions=transcriptions, - use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname_prefix) + use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname) return sdk_no_wait(no_wait, client.create, resource_group_name=resource_group_name, account_name=account_name, live_event_name=live_event_name, parameters=live_event, auto_start=auto_start) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index d800fbad775..8334ba1c6bc 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l --managed-identity User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:20 GMT + - Wed, 20 Jan 2021 23:24:34 GMT expires: - '-1' odata-version: @@ -73,14 +73,14 @@ interactions: - --name -g --enable-soft-delete --enable-purge-protection 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.15.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-13T01:18:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-20T23:23:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -89,7 +89,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:20 GMT + - Wed, 20 Jan 2021 23:24:35 GMT expires: - '-1' pragma: @@ -144,19 +144,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:19:21 GMT + - Wed, 20 Jan 2021 23:24:36 GMT duration: - - '513548' + - '1236847' expires: - '-1' ocp-aad-diagnostics-server-name: - - SwDT4EczDKSSGLz3c/tJ2r5m4YKhF43Wgixnn3FDT60= + - ALmZeTnnpbHhHqQfn5g8EftfyteKPtfKbr+aMKkz9p4= ocp-aad-session-key: - - RgJXMdgcDRz0gThxrAbCuMhQ9Q5H_gv49egj145nnonVzDfPhX7JtOU5XUFoZk7aI_OzFmikvtW9EmMKtWWJNIJCBRBeD7OGbSaNLSvl9PkyPF-t4eF4Gx-ISBXJNbtT.l04LyYOLqh9wGL3qK6v9dZfifO6raj58WWhowCRQZIk + - jldEBVD-3Ak60UD1zf39I9CQT3FA743yFcTrMKrAb5khPmouoQpAw5oEmgDP089g5LsqEbfz1RLkbeFEMZFWazSYpZOzFnttJoH_V3Fszn4Hpj5agT5Z6lHiRs_3nsB3.ULBsgKXUaDzoO0mMvFLtbovq_QdejkMT_va6Rt7voAo pragma: - no-cache request-id: - - ef1c072a-3b31-4868-bef6-fa69b181adbf + - 6a5c3aaf-d6ac-4cd3-91dd-5fd5f7cfab0d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -198,7 +198,7 @@ interactions: ParameterSetName: - --name -g --enable-soft-delete --enable-purge-protection User-Agent: - - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (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/clitest000003?api-version=2019-09-01 response: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:21 GMT + - Wed, 20 Jan 2021 23:24:36 GMT expires: - '-1' pragma: @@ -230,7 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.190.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:22 GMT + - Wed, 20 Jan 2021 23:24:36 GMT expires: - '-1' pragma: @@ -283,11 +283,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.2.205;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.77;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: - - 1.2.99.0 + - 1.2.139.0 x-powered-by: - ASP.NET status: @@ -315,7 +315,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vnBSwOIH2QkSQeGppmeDYhB3OE1o5dcPiCZh_HK8gCNrEd6Fd3fA4tI5P6E7TE8r15pV2BFnuhBmr5DoYtiXvzLma_SwYf7VkTM56nmf1p-YBALNI_UjxpQm9tThY3n5-bSBGvrIpXOwSt2FSypfsPuDUGaO27N88TXQLrzRpOdC5ERmdCP1bQmktZVKmZNGy6hy_QvG4vt46DC0AO2qWsr9BQXJZK54l05eWd9LxjNrngBqZn4pbu7ksMXByr16nt-oXIGzfQ1adfdqbpcOzIvnK3tghwo-tCMnRhNxr3T0E6JH7FmsEVFcad-6XdSNKc1shVwXEcnwNDYmq2bTSQ","e":"AQAB"},"attributes":{"enabled":true,"created":1610500764,"updated":1610500764,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0ss3n4l9b21CoR-aw7W_zjIYszQJ1wv7DcA2qOwXH9heJxrZXo6Yyyy1zi61sCeomYLzSmAASbTvRyb8LO3STDm1uFBFNlZFSFILA2xhV6fNyYLCXq4PLGdvzsTTIwpmjTidVHDolLlyNtNENZlTXqOpuTsM0R-qaJDuXFdcixPTwT9TJigO8n-bhtjYosNKSgfxCg3cqu0trPlO3O2Va6yjZmnG7HvdW8vMD2G1cYAgYd7fFq4pTu6kq32VmXD2V8TaTcVr6qkymaJY3RF0dv6PTiDcG-Bps8Auue8QuqWlvpFzqhKWvB7h5X0sLjJBI4_0N--IgCIm_hXmW5xMrQ","e":"AQAB"},"attributes":{"enabled":true,"created":1611185078,"updated":1611185078,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Wed, 20 Jan 2021 23:24:38 GMT expires: - '-1' pragma: @@ -334,11 +334,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.2.205;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.77;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: - - 1.2.99.0 + - 1.2.139.0 x-powered-by: - ASP.NET status: @@ -358,7 +358,7 @@ interactions: ParameterSetName: - --object-id --name --key-permissions User-Agent: - - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Wed, 20 Jan 2021 23:24:39 GMT expires: - '-1' pragma: @@ -400,7 +400,7 @@ interactions: ParameterSetName: - --object-id --name --key-permissions User-Agent: - - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Wed, 20 Jan 2021 23:24:38 GMT expires: - '-1' pragma: @@ -432,7 +432,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.190.0 x-powered-by: - ASP.NET status: @@ -448,7 +448,7 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "4464a818-5755-406a-b205-31493e0012a8", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "cc3dc3bd-0a37-435b-a00d-7afad43446ef", "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -468,12 +468,12 @@ interactions: ParameterSetName: - --object-id --name --key-permissions User-Agent: - - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (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/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4464a818-5755-406a-b205-31493e0012a8","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"cc3dc3bd-0a37-435b-a00d-7afad43446ef","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -482,7 +482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Wed, 20 Jan 2021 23:24:39 GMT expires: - '-1' pragma: @@ -500,9 +500,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.190.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -523,7 +523,7 @@ interactions: - -a -g --key-source --key-vault-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -531,10 +531,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -544,7 +544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:25 GMT + - Wed, 20 Jan 2021 23:24:40 GMT expires: - '-1' odata-version: @@ -567,7 +567,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -586,7 +586,7 @@ interactions: - -a -g --key-source --key-vault-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -594,11 +594,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -608,7 +608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:28 GMT + - Wed, 20 Jan 2021 23:24:44 GMT expires: - '-1' odata-version: @@ -641,7 +641,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -649,11 +649,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"d6807129-0574-4b0b-89d8-09c72db22bc2\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/7044336e3e424d86b9d79f6fb04b86f1\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"4464a818-5755-406a-b205-31493e0012a8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:29 GMT + - Wed, 20 Jan 2021 23:24:45 GMT expires: - '-1' odata-version: @@ -700,7 +700,7 @@ interactions: - -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -714,7 +714,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:19:35 GMT + - Wed, 20 Jan 2021 23:24:48 GMT expires: - '-1' pragma: @@ -746,7 +746,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.15.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: @@ -758,7 +758,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:19:38 GMT + - Wed, 20 Jan 2021 23:24:53 GMT expires: - '-1' pragma: @@ -772,7 +772,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.190.0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-powered-by: From 31834ac83f781d95fa10b0387be676419c9bbbf0 Mon Sep 17 00:00:00 2001 From: hivyas Date: Wed, 20 Jan 2021 20:45:39 -0800 Subject: [PATCH 19/30] reran all ams tests live --- ...st_ams_account_filter_create_and_show.yaml | 22 +- ...st_ams_account_filter_list_and_delete.yaml | 50 +- .../test_ams_account_filter_update.yaml | 22 +- .../latest/recordings/test_ams_asset.yaml | 74 +- .../test_ams_asset_filter_create.yaml | 32 +- ...test_ams_asset_filter_list_and_delete.yaml | 60 +- .../test_ams_asset_filter_show.yaml | 42 +- .../test_ams_asset_filter_update.yaml | 44 +- .../test_ams_asset_get_encryption_key.yaml | 18 +- .../test_ams_asset_get_sas_urls.yaml | 24 +- ...est_ams_asset_list_streaming_locators.yaml | 26 +- .../recordings/test_ams_check_name.yaml | 26 +- .../recordings/test_ams_create_show.yaml | 48 +- .../test_ams_encryption_set_show.yaml | 74 +- .../tests/latest/recordings/test_ams_job.yaml | 184 +- .../recordings/test_ams_sp_create_reset.yaml | 407 +- .../test_ams_storage_add_remove.yaml | 32 +- .../test_ams_streaming_endpoint_create.yaml | 222 +- ...streaming_endpoint_create_with_akamai.yaml | 146 +- ...dpoint_create_with_akamai_without_ips.yaml | 92 +- .../test_ams_streaming_endpoint_delete.yaml | 4360 +++++++- .../test_ams_streaming_endpoint_list.yaml | 109 +- .../test_ams_streaming_endpoint_scale.yaml | 108 +- .../test_ams_streaming_endpoint_show.yaml | 191 +- .../test_ams_streaming_endpoint_start.yaml | 8842 +++++----------- ...st_ams_streaming_endpoint_start_async.yaml | 56 +- .../test_ams_streaming_endpoint_stop.yaml | 7103 +++++++------ ...est_ams_streaming_endpoint_stop_async.yaml | 8912 ++++++++++------- .../test_ams_streaming_endpoint_update.yaml | 128 +- .../test_ams_streaming_locator.yaml | 52 +- ...s_streaming_locator_list_content_keys.yaml | 36 +- ...s_streaming_locator_with_content_keys.yaml | 52 +- ...st_ams_streaming_locator_with_filters.yaml | 60 +- .../recordings/test_ams_streaming_policy.yaml | 38 +- .../test_ams_streaming_policy_cbcs.yaml | 14 +- ...ams_streaming_policy_cbcs_default_drm.yaml | 18 +- .../test_ams_streaming_policy_cenc.yaml | 40 +- ...ams_streaming_policy_cenc_default_drm.yaml | 38 +- ...treaming_policy_cenc_disable_widevine.yaml | 32 +- .../test_ams_streaming_policy_envelope.yaml | 12 +- .../test_ams_sync_storage_keys.yaml | 16 +- .../latest/recordings/test_ams_transform.yaml | 78 +- ...st_ams_transform_create_custom_preset.yaml | 16 +- ...ransform_create_custom_preset_invalid.yaml | 6 +- .../test_ams_transform_output_add.yaml | 68 +- .../test_content_key_policy_create_basic.yaml | 18 +- ...ntent_key_policy_create_with_fairplay.yaml | 18 +- ...y_policy_create_with_fairplay_offline.yaml | 18 +- ...key_policy_create_with_playready_fail.yaml | 8 +- ..._policy_create_with_playready_success.yaml | 18 +- ..._content_key_policy_create_with_token.yaml | 16 +- ...ntent_key_policy_create_with_widevine.yaml | 18 +- .../test_content_key_policy_delete_list.yaml | 36 +- .../test_content_key_policy_show_basic.yaml | 26 +- ..._content_key_policy_show_with_secrets.yaml | 34 +- .../test_content_key_policy_update.yaml | 36 +- .../recordings/test_live_event_create.yaml | 138 +- .../recordings/test_live_event_delete.yaml | 160 +- .../recordings/test_live_event_list.yaml | 120 +- .../recordings/test_live_event_reset.yaml | 94 +- .../recordings/test_live_event_show.yaml | 78 +- .../recordings/test_live_event_standby.yaml | 90 +- .../recordings/test_live_event_start.yaml | 86 +- .../recordings/test_live_event_stop.yaml | 191 +- ...st_live_event_stop_and_remove_outputs.yaml | 172 +- .../recordings/test_live_event_update.yaml | 104 +- .../recordings/test_live_output_create.yaml | 90 +- .../recordings/test_live_output_delete.yaml | 158 +- .../recordings/test_live_output_list.yaml | 96 +- .../recordings/test_live_output_show.yaml | 98 +- .../test_ams_account_encryption_scenarios.py | 2 - .../latest/test_ams_live_event_scenarios.py | 2 +- 72 files changed, 18296 insertions(+), 15659 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml index 993ac01cbe9..a3df3b3e308 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_create_and_show.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Central US\",\"properties\":{\r\n \"mediaServiceId\":\"6c4647b6-b946-4deb-b2c3-c48588e3fe1d\",\"storageAccounts\":[\r\n + Central US\",\"properties\":{\r\n \"mediaServiceId\":\"598e30d2-9a15-43a2-aaa1-781b2ba19d7c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:44 GMT + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -85,7 +85,7 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -108,7 +108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -122,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -141,7 +141,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -164,7 +164,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -199,7 +199,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -218,7 +218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:18:46 GMT + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml index 7b40997e160..875369daced 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_list_and_delete.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - Central US\",\"properties\":{\r\n \"mediaServiceId\":\"33ed2f21-e81a-4cc3-842d-caf490453044\",\"storageAccounts\":[\r\n + Central US\",\"properties\":{\r\n \"mediaServiceId\":\"03052190-3b03-4540-ab6e-03a5871c6ac8\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:43 GMT + - Thu, 21 Jan 2021 00:19:22 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -90,7 +90,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:44 GMT + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -136,7 +136,7 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -159,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -173,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -192,7 +192,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -216,7 +216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -262,7 +262,7 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -285,7 +285,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:46 GMT + - Thu, 21 Jan 2021 00:19:25 GMT expires: - '-1' odata-version: @@ -299,7 +299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -318,24 +318,24 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/accountFilters?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"filter000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000005\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n \ \"presentationTimeRange\":{\r\n \"startTimestamp\":40000000,\"endTimestamp\":100000000,\"presentationWindowDuration\":1200000000,\"liveBackoffDuration\":60,\"timescale\":10000000,\"forceEndTimestamp\":false\r\n - \ },\"firstQuality\":{\r\n \"bitrate\":420\r\n },\"tracks\":[\r\n + \ },\"firstQuality\":{\r\n \"bitrate\":1000\r\n },\"tracks\":[\r\n \ {\r\n \"trackSelections\":[\r\n {\r\n \"property\":\"FourCC\",\"value\":\"AVC1\",\"operation\":\"Equal\"\r\n \ }\r\n ]\r\n },{\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"Unknown\",\"value\":\"EC-3\",\"operation\":\"NotEqual\"\r\n \ },{\r\n \"property\":\"FourCC\",\"value\":\"MP4A\",\"operation\":\"Equal\"\r\n \ }\r\n ]\r\n }\r\n ]\r\n }\r\n - \ },{\r\n \"name\":\"filter000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000005\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n + \ },{\r\n \"name\":\"filter000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/accountFilters/filter000004\",\"type\":\"Microsoft.Media/mediaservices/accountFilters\",\"properties\":{\r\n \ \"presentationTimeRange\":{\r\n \"startTimestamp\":40000000,\"endTimestamp\":100000000,\"presentationWindowDuration\":1200000000,\"liveBackoffDuration\":60,\"timescale\":10000000,\"forceEndTimestamp\":false\r\n - \ },\"firstQuality\":{\r\n \"bitrate\":1000\r\n },\"tracks\":[\r\n + \ },\"firstQuality\":{\r\n \"bitrate\":420\r\n },\"tracks\":[\r\n \ {\r\n \"trackSelections\":[\r\n {\r\n \"property\":\"FourCC\",\"value\":\"AVC1\",\"operation\":\"Equal\"\r\n \ }\r\n ]\r\n },{\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"Unknown\",\"value\":\"EC-3\",\"operation\":\"NotEqual\"\r\n @@ -350,7 +350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:46 GMT + - Thu, 21 Jan 2021 00:19:26 GMT expires: - '-1' odata-version: @@ -387,7 +387,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -401,7 +401,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:18:47 GMT + - Thu, 21 Jan 2021 00:19:26 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -432,7 +432,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -456,7 +456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:47 GMT + - Thu, 21 Jan 2021 00:19:26 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml index 5ad7d3afc62..7535549f715 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_account_filter_update.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"8b9048ba-77af-49fe-b301-15c69ee0328b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"0b585662-d767-4f8a-81df-2c6ff1e53a49\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:42 GMT + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -84,7 +84,7 @@ interactions: --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -107,7 +107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:43 GMT + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -121,7 +121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -140,7 +140,7 @@ interactions: - -a -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -163,7 +163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:25 GMT expires: - '-1' odata-version: @@ -208,7 +208,7 @@ interactions: - -a -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -231,7 +231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:19:27 GMT expires: - '-1' odata-version: @@ -249,7 +249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml index 02cb79347c2..e09dd939489 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"c076c5a4-1f63-43ef-bb7a-3a009660dcc4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:24 GMT + - Thu, 21 Jan 2021 00:31:04 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"c076c5a4-1f63-43ef-bb7a-3a009660dcc4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:26 GMT + - Thu, 21 Jan 2021 00:31:05 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,9 +145,9 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"97e52896-19d1-45e8-a4bf-23141821a1c6\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"c076c5a4-1f63-43ef-bb7a-3a009660dcc4\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n \ }\r\n}" @@ -159,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:29 GMT + - Thu, 21 Jan 2021 00:31:07 GMT expires: - '-1' odata-version: @@ -173,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -197,7 +197,7 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -205,17 +205,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:31.83Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2900892c-20b8-41cd-9dd9-acd0b24dd5b1\",\"created\":\"2021-01-21T00:31:11.073Z\",\"lastModified\":\"2021-01-21T00:31:11.073Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '611' + - '613' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:32 GMT + - Thu, 21 Jan 2021 00:31:11 GMT expires: - '-1' odata-version: @@ -248,7 +248,7 @@ interactions: - -a -n -g --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -256,17 +256,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:31.83Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2900892c-20b8-41cd-9dd9-acd0b24dd5b1\",\"created\":\"2021-01-21T00:31:11.073Z\",\"lastModified\":\"2021-01-21T00:31:11.073Z\",\"alternateId\":\"aid000007\",\"description\":\"desc000008\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '611' + - '613' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:33 GMT + - Thu, 21 Jan 2021 00:31:12 GMT expires: - '-1' odata-version: @@ -306,7 +306,7 @@ interactions: - -a -n -g --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -314,17 +314,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2900892c-20b8-41cd-9dd9-acd0b24dd5b1\",\"created\":\"2021-01-21T00:31:11.073Z\",\"lastModified\":\"2021-01-21T00:31:15Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '599' + - '596' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:34 GMT + - Thu, 21 Jan 2021 00:31:14 GMT expires: - '-1' odata-version: @@ -361,7 +361,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -369,17 +369,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2900892c-20b8-41cd-9dd9-acd0b24dd5b1\",\"created\":\"2021-01-21T00:31:11.073Z\",\"lastModified\":\"2021-01-21T00:31:15Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '599' + - '596' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:36 GMT + - Thu, 21 Jan 2021 00:31:15 GMT expires: - '-1' odata-version: @@ -414,7 +414,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -433,7 +433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:20:37 GMT + - Thu, 21 Jan 2021 00:31:17 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -470,17 +470,17 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"asset000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004/assets/asset000006\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"2f30c0f6-941e-4a5a-949b-f5829c45f57c\",\"created\":\"2021-01-13T01:20:31.83Z\",\"lastModified\":\"2021-01-13T01:20:35.517Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"2900892c-20b8-41cd-9dd9-acd0b24dd5b1\",\"created\":\"2021-01-21T00:31:11.073Z\",\"lastModified\":\"2021-01-21T00:31:15Z\",\"alternateId\":\"myaid\",\"description\":\"mydesc\",\"container\":\"cont000005\",\"storageAccountName\":\"clitest000003\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '643' + - '640' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:39 GMT + - Thu, 21 Jan 2021 00:31:17 GMT expires: - '-1' odata-version: @@ -517,7 +517,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -531,7 +531,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:20:39 GMT + - Thu, 21 Jan 2021 00:31:20 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml index d937233fe9c..b048c9316a0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_create.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b1afd9ae-e3ba-4400-8169-967448fe46b4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:11 GMT + - Thu, 21 Jan 2021 00:26:50 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b1afd9ae-e3ba-4400-8169-967448fe46b4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:12 GMT + - Thu, 21 Jan 2021 00:26:51 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -142,7 +142,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b0e5be0b-3ab8-4b97-a6a9-8c757a4711d1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"b1afd9ae-e3ba-4400-8169-967448fe46b4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -155,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:13 GMT + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -169,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -193,7 +193,7 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -201,7 +201,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"ef7f7cb8-fc40-4bb4-ada8-2a6ffe841f2a\",\"created\":\"2021-01-13T01:19:15.62Z\",\"lastModified\":\"2021-01-13T01:19:15.62Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"8c046978-9b1f-45db-bdf5-0f55b3bc7849\",\"created\":\"2021-01-21T00:26:54.43Z\",\"lastModified\":\"2021-01-21T00:26:54.43Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:15 GMT + - Thu, 21 Jan 2021 00:26:55 GMT expires: - '-1' odata-version: @@ -255,7 +255,7 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -278,7 +278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:18 GMT + - Thu, 21 Jan 2021 00:26:57 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml index f18e3c0d66b..139404c9206 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_list_and_delete.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"fde4e46d-2af0-4832-ab86-dff652e71720\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:10 GMT + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -73,7 +73,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"fde4e46d-2af0-4832-ab86-dff652e71720\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:11 GMT + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -142,7 +142,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"9ef18926-5c6b-429a-a388-88f30535b278\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"fde4e46d-2af0-4832-ab86-dff652e71720\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -155,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:12 GMT + - Thu, 21 Jan 2021 00:26:54 GMT expires: - '-1' odata-version: @@ -193,7 +193,7 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -201,17 +201,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"b044cd35-db38-42b3-aef0-d57b2fe4c405\",\"created\":\"2021-01-13T01:19:13.82Z\",\"lastModified\":\"2021-01-13T01:19:13.82Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"ab5fe446-f709-4898-b649-97f65b541199\",\"created\":\"2021-01-21T00:26:56.387Z\",\"lastModified\":\"2021-01-21T00:26:56.387Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '611' + - '613' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:14 GMT + - Thu, 21 Jan 2021 00:26:56 GMT expires: - '-1' odata-version: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 201 message: Created @@ -244,7 +244,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -260,7 +260,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:15 GMT + - Thu, 21 Jan 2021 00:26:58 GMT expires: - '-1' odata-version: @@ -299,7 +299,7 @@ interactions: - -a --asset-name -g -n --first-quality User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -317,7 +317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:18 GMT + - Thu, 21 Jan 2021 00:27:01 GMT expires: - '-1' odata-version: @@ -331,7 +331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -350,7 +350,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -368,7 +368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:19 GMT + - Thu, 21 Jan 2021 00:27:02 GMT expires: - '-1' odata-version: @@ -407,7 +407,7 @@ interactions: - -a --asset-name -g -n --bitrate User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -425,7 +425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:21 GMT + - Thu, 21 Jan 2021 00:27:05 GMT expires: - '-1' odata-version: @@ -439,7 +439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -458,7 +458,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -478,7 +478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:23 GMT + - Thu, 21 Jan 2021 00:27:05 GMT expires: - '-1' odata-version: @@ -515,7 +515,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -529,7 +529,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Thu, 21 Jan 2021 00:27:08 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -578,7 +578,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:26 GMT + - Thu, 21 Jan 2021 00:27:09 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml index c67a2ab4568..a48c1b513d6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_show.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"08c9ef84-8b7c-4c64-b574-7ffbb07add76\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:15 GMT + - Thu, 21 Jan 2021 00:26:51 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"08c9ef84-8b7c-4c64-b574-7ffbb07add76\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:16 GMT + - Thu, 21 Jan 2021 00:26:53 GMT expires: - '-1' odata-version: @@ -135,7 +135,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -143,7 +143,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"ea105ffd-7f34-4422-b8f6-5deb46c248e3\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"08c9ef84-8b7c-4c64-b574-7ffbb07add76\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -156,7 +156,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:18 GMT + - Thu, 21 Jan 2021 00:26:55 GMT expires: - '-1' odata-version: @@ -170,7 +170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -194,7 +194,7 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -202,7 +202,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"115a7ed4-b6ed-4442-9a98-16b04953c0a4\",\"created\":\"2021-01-13T01:19:20.563Z\",\"lastModified\":\"2021-01-13T01:19:20.563Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"b8aaba15-0d30-4375-87d1-c39012ca1e42\",\"created\":\"2021-01-21T00:26:57.253Z\",\"lastModified\":\"2021-01-21T00:26:57.253Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:21 GMT + - Thu, 21 Jan 2021 00:26:57 GMT expires: - '-1' odata-version: @@ -256,7 +256,7 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -279,7 +279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:24 GMT + - Thu, 21 Jan 2021 00:27:01 GMT expires: - '-1' odata-version: @@ -293,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -312,7 +312,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -335,7 +335,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:27 GMT + - Thu, 21 Jan 2021 00:27:03 GMT expires: - '-1' odata-version: @@ -370,7 +370,7 @@ interactions: - -a --asset-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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -389,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:19:29 GMT + - Thu, 21 Jan 2021 00:27:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml index 60af83be60a..3de752fca49 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_filter_update.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"3ffb91be-3017-416d-b812-578356998d9e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:37 GMT + - Thu, 21 Jan 2021 00:26:49 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"3ffb91be-3017-416d-b812-578356998d9e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:38 GMT + - Thu, 21 Jan 2021 00:26:50 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -142,7 +142,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"e86200c7-f4d3-464b-ad52-abc9509e6dfd\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"3ffb91be-3017-416d-b812-578356998d9e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -155,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:40 GMT + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -169,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -193,7 +193,7 @@ interactions: - -a -n -g --description --alternate-id --storage-account --container User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -201,7 +201,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"03b700eb-9651-417f-a981-8d94f2254a90\",\"created\":\"2021-01-13T01:20:41.497Z\",\"lastModified\":\"2021-01-13T01:20:41.497Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"1b98e9b3-e28a-4c65-a4ca-05bf7065e5c1\",\"created\":\"2021-01-21T00:26:54.393Z\",\"lastModified\":\"2021-01-21T00:26:54.393Z\",\"alternateId\":\"aid000006\",\"description\":\"desc000007\",\"container\":\"cont000004\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:42 GMT + - Thu, 21 Jan 2021 00:26:54 GMT expires: - '-1' odata-version: @@ -255,7 +255,7 @@ interactions: --presentation-window-duration --start-timestamp --timescale --tracks User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -278,7 +278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:44 GMT + - Thu, 21 Jan 2021 00:26:57 GMT expires: - '-1' odata-version: @@ -292,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -311,7 +311,7 @@ interactions: - -a --asset-name -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -334,7 +334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:46 GMT + - Thu, 21 Jan 2021 00:26:59 GMT expires: - '-1' odata-version: @@ -379,7 +379,7 @@ interactions: - -a --asset-name -g -n --bitrate --start-timestamp --end-timestamp --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -402,7 +402,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:48 GMT + - Thu, 21 Jan 2021 00:27:00 GMT expires: - '-1' odata-version: @@ -420,7 +420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml index 356bb81614f..f82f8b2f8df 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_encryption_key.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"f3152661-2361-4e03-aeda-f48add993c8f\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"12b7ee3a-ff54-4702-a990-d751fee7b87f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:20 GMT + - Thu, 21 Jan 2021 00:30:16 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -77,7 +77,7 @@ interactions: - -a -n -g --description --alternate-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -85,7 +85,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"c7ae2379-ce14-4752-b7e9-ded511ce7446\",\"created\":\"2021-01-13T01:20:22.547Z\",\"lastModified\":\"2021-01-13T01:20:22.547Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"3fee659b-ba12-4da3-a6d1-dc5af22bfd5a\",\"created\":\"2021-01-21T00:30:18.853Z\",\"lastModified\":\"2021-01-21T00:30:18.853Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:22 GMT + - Thu, 21 Jan 2021 00:30:20 GMT expires: - '-1' odata-version: @@ -130,7 +130,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -148,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:20:25 GMT + - Thu, 21 Jan 2021 00:31:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml index 3fb694cb0e5..039abb3c0bb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_get_sas_urls.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"9a632724-cab4-42f6-a15e-842bdf8256af\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"0a27c85a-3365-496f-8412-9b85a2072164\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:44 GMT + - Thu, 21 Jan 2021 00:29:58 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -78,7 +78,7 @@ interactions: - -a -n -g --description --alternate-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,7 +86,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"40c772a0-e143-404c-bec0-f5cf8f10b0cd\",\"created\":\"2021-01-13T01:19:46.987Z\",\"lastModified\":\"2021-01-13T01:19:46.987Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"5a510eac-c1a4-49b2-92f3-9d620ba720ec\",\"created\":\"2021-01-21T00:30:00.733Z\",\"lastModified\":\"2021-01-21T00:30:00.733Z\",\"alternateId\":\"aid000005\",\"description\":\"desc000006\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -96,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:48 GMT + - Thu, 21 Jan 2021 00:30:00 GMT expires: - '-1' odata-version: @@ -115,7 +115,7 @@ interactions: code: 201 message: Created - request: - body: '{"permissions": "Read", "expiryTime": "2021-01-13T16:19:15.588216Z"}' + body: '{"permissions": "Read", "expiryTime": "2021-01-21T15:30:00.094245Z"}' headers: Accept: - application/json @@ -133,24 +133,24 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listContainerSas?api-version=2020-05-01 response: body: - string: "{\r\n \"assetContainerSasUrls\":[\r\n \"https://clitest000002.blob.core.windows.net/asset-40c772a0-e143-404c-bec0-f5cf8f10b0cd?sv=2019-02-02&sr=c&sig=mNKK0KnJ1Rwuni8R8c86h1cjWODKWxa%2FKMN%2BUi90Fjs%3D&se=2021-01-13T16:19:15Z&sp=rl\",\"https://clitest000002.blob.core.windows.net/asset-40c772a0-e143-404c-bec0-f5cf8f10b0cd?sv=2019-02-02&sr=c&sig=9qHgBjWWcnWat%2B4mf4zqk9GdjgRL2NCROl%2FfBWVXjBI%3D&se=2021-01-13T16:19:15Z&sp=rl\"\r\n + string: "{\r\n \"assetContainerSasUrls\":[\r\n \"https://clitest000002.blob.core.windows.net/asset-5a510eac-c1a4-49b2-92f3-9d620ba720ec?sv=2019-02-02&sr=c&sig=XsniGQSilxLka8a7bhbdY6WuHeJNlnwErzvwqrgnlNA%3D&se=2021-01-21T15:30:00Z&sp=rl\",\"https://clitest000002.blob.core.windows.net/asset-5a510eac-c1a4-49b2-92f3-9d620ba720ec?sv=2019-02-02&sr=c&sig=mjgIeJixuHyi93G%2FEdo3Jdhg7sL8ZsXDDVct4grD8RA%3D&se=2021-01-21T15:30:00Z&sp=rl\"\r\n \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '451' + - '445' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:48 GMT + - Thu, 21 Jan 2021 00:30:03 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml index 452c1973beb..f25ac4723f0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset_list_streaming_locators.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"b77e5df3-f7e6-48ee-b420-9de012716258\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"ce107f84-37a2-4c58-91d9-76242943fa61\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:55 GMT + - Thu, 21 Jan 2021 00:31:39 GMT expires: - '-1' odata-version: @@ -78,7 +78,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,7 +86,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"195c61c6-b940-4b9e-b8ea-e06a9dd618ba\",\"created\":\"2021-01-13T01:19:57.44Z\",\"lastModified\":\"2021-01-13T01:19:57.44Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"23152e3a-768f-4daf-912e-2fd109472352\",\"created\":\"2021-01-21T00:31:41.55Z\",\"lastModified\":\"2021-01-21T00:31:41.55Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -96,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:59 GMT + - Thu, 21 Jan 2021 00:31:42 GMT expires: - '-1' odata-version: @@ -133,7 +133,7 @@ interactions: - -n -a -g --streaming-policy-name --asset-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -141,7 +141,7 @@ interactions: response: body: string: "{\r\n \"name\":\"str000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/str000005\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:20:01.0199173Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"47aaca7e-5d18-4b94-9289-e45837fad1f4\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T00:31:44.6007841Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"0f76a6b4-3585-4108-a91a-7c418d5f83a1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"contentKeys\":[\r\n \ \r\n ],\"filters\":[\r\n \r\n ]\r\n }\r\n}" headers: cache-control: @@ -151,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:01 GMT + - Thu, 21 Jan 2021 00:31:43 GMT expires: - '-1' odata-version: @@ -186,24 +186,24 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/assets/asset000004/listStreamingLocators?api-version=2020-05-01 response: body: - string: "{\r\n \"streamingLocators\":[\r\n {\r\n \"name\":\"str000005\",\"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:20:01.02Z\",\"endTime\":\"9999-12-31T23:59:59.997Z\",\"streamingLocatorId\":\"47aaca7e-5d18-4b94-9289-e45837fad1f4\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\"\r\n + string: "{\r\n \"streamingLocators\":[\r\n {\r\n \"name\":\"str000005\",\"assetName\":\"asset000004\",\"created\":\"2021-01-21T00:31:44.6Z\",\"endTime\":\"9999-12-31T23:59:59.997Z\",\"streamingLocatorId\":\"0f76a6b4-3585-4108-a91a-7c418d5f83a1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\"\r\n \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '291' + - '290' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:03 GMT + - Thu, 21 Jan 2021 00:31:46 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml index 9aa1c3bbd31..52392210c40 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"d82b9c4c-fa89-457a-8bbd-d43c84b3d667\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b268eb59-a3cd-49fc-a7a1-1bfd9fff4059\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:40 GMT + - Thu, 21 Jan 2021 00:24:02 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -77,7 +77,7 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:41 GMT + - Thu, 21 Jan 2021 00:24:02 GMT expires: - '-1' odata-version: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -136,7 +136,7 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -152,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:42 GMT + - Thu, 21 Jan 2021 00:24:03 GMT expires: - '-1' odata-version: @@ -194,7 +194,7 @@ interactions: - --location -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -212,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:18:42 GMT + - Thu, 21 Jan 2021 00:24:04 GMT expires: - '-1' odata-version: @@ -251,7 +251,7 @@ interactions: - -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -265,7 +265,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:18:45 GMT + - Thu, 21 Jan 2021 00:24:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml index c703d3116b7..e2a76bfd4c8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l --managed-identity User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:05 GMT + - Thu, 21 Jan 2021 00:24:16 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -n -g --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,10 +81,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:05 GMT + - Thu, 21 Jan 2021 00:24:17 GMT expires: - '-1' odata-version: @@ -136,7 +136,7 @@ interactions: - -n -g --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -144,10 +144,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:08 GMT + - Thu, 21 Jan 2021 00:24:19 GMT expires: - '-1' odata-version: @@ -171,7 +171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -190,7 +190,7 @@ interactions: - -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -199,11 +199,11 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n + \ \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n - \ \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:08 GMT + - Thu, 21 Jan 2021 00:24:20 GMT expires: - '-1' odata-version: @@ -248,7 +248,7 @@ interactions: - -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -256,10 +256,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"def10a0e-1a8d-4009-9439-ac64a309992c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"48a1eee4-c10b-48f2-be6e-f1e36ebb8579\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -269,7 +269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:08 GMT + - Thu, 21 Jan 2021 00:24:21 GMT expires: - '-1' odata-version: @@ -306,7 +306,7 @@ interactions: - -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -320,7 +320,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:20:11 GMT + - Thu, 21 Jan 2021 00:24:22 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index 8334ba1c6bc..8ddaebada47 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 20 Jan 2021 23:24:34 GMT + - Thu, 21 Jan 2021 00:17:35 GMT expires: - '-1' odata-version: @@ -80,7 +80,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-20T23:23:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-21T00:16:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -89,7 +89,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:35 GMT + - Thu, 21 Jan 2021 00:17:35 GMT expires: - '-1' pragma: @@ -144,19 +144,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 20 Jan 2021 23:24:36 GMT + - Thu, 21 Jan 2021 00:17:36 GMT duration: - - '1236847' + - '629849' expires: - '-1' ocp-aad-diagnostics-server-name: - - ALmZeTnnpbHhHqQfn5g8EftfyteKPtfKbr+aMKkz9p4= + - CjDen3tOMbktu0pngbo/hnIwfAwGBugXGj6jj7IWIww= ocp-aad-session-key: - - jldEBVD-3Ak60UD1zf39I9CQT3FA743yFcTrMKrAb5khPmouoQpAw5oEmgDP089g5LsqEbfz1RLkbeFEMZFWazSYpZOzFnttJoH_V3Fszn4Hpj5agT5Z6lHiRs_3nsB3.ULBsgKXUaDzoO0mMvFLtbovq_QdejkMT_va6Rt7voAo + - FavUfmjKtAABcyBIdEBlfM4NRrPTwOozsWC0JHn9ns7rMtQJTR-K8Uppdq18l8lm55MKV6-5-suMLZ2g3pOsEkU2B_68NXPPxPtd_n4ANWn2VZIK-y2kDKX5m251kEUt.qvP2kUQ_LLobDHMiL5-Jq8Q9V9rf9SEQngHUbqKqGPU pragma: - no-cache request-id: - - 6a5c3aaf-d6ac-4cd3-91dd-5fd5f7cfab0d + - e2ee12b3-c519-4b25-ba7a-5fc039d2d899 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:36 GMT + - Thu, 21 Jan 2021 00:17:37 GMT expires: - '-1' pragma: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:36 GMT + - Thu, 21 Jan 2021 00:17:38 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.77;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.205;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: @@ -315,7 +315,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0ss3n4l9b21CoR-aw7W_zjIYszQJ1wv7DcA2qOwXH9heJxrZXo6Yyyy1zi61sCeomYLzSmAASbTvRyb8LO3STDm1uFBFNlZFSFILA2xhV6fNyYLCXq4PLGdvzsTTIwpmjTidVHDolLlyNtNENZlTXqOpuTsM0R-qaJDuXFdcixPTwT9TJigO8n-bhtjYosNKSgfxCg3cqu0trPlO3O2Va6yjZmnG7HvdW8vMD2G1cYAgYd7fFq4pTu6kq32VmXD2V8TaTcVr6qkymaJY3RF0dv6PTiDcG-Bps8Auue8QuqWlvpFzqhKWvB7h5X0sLjJBI4_0N--IgCIm_hXmW5xMrQ","e":"AQAB"},"attributes":{"enabled":true,"created":1611185078,"updated":1611185078,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"y2Va6E7cq7M3MX7skFQ6HGoqKQowJF-AFoi1rwg1VaNclvBLA2mm2t21414GKLkylktUvWWMPGjfU_hXPFzxZrjlnNnpDgpuirqWG9LQ3ADU8gr5pkYWgccJNylPK28utG_gwqajfxUAEMQMzy3twYrxylR5w-vSZ8WeUfIUR540ITCx5KSj5DlmQWxHso6hWvm-vxvF7OyYS27RYMm8CI7_x_JSD7KEuiRy4RZ4uHPfOU-wCN1qf-ezLCdwpI28JY1lPEHNjdIRv29qeByGJnFi3OnlLawxf8exBAoPEfHv4KFVTgTKFCiq7cUbuzl-HVdZGLjJIam776F98cO8AQ","e":"AQAB"},"attributes":{"enabled":true,"created":1611188258,"updated":1611188258,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:38 GMT + - Thu, 21 Jan 2021 00:17:38 GMT expires: - '-1' pragma: @@ -334,7 +334,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.77;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.205;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:39 GMT + - Thu, 21 Jan 2021 00:17:37 GMT expires: - '-1' pragma: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:38 GMT + - Thu, 21 Jan 2021 00:17:38 GMT expires: - '-1' pragma: @@ -448,8 +448,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "cc3dc3bd-0a37-435b-a00d-7afad43446ef", - "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b", + "permissions": {"keys": ["unwrapKey", "wrapKey", "get"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -473,7 +473,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"cc3dc3bd-0a37-435b-a00d-7afad43446ef","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b","permissions":{"keys":["unwrapKey","wrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -482,7 +482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 23:24:39 GMT + - Thu, 21 Jan 2021 00:17:38 GMT expires: - '-1' pragma: @@ -531,10 +531,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -544,7 +544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 20 Jan 2021 23:24:40 GMT + - Thu, 21 Jan 2021 00:17:39 GMT expires: - '-1' odata-version: @@ -567,7 +567,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -594,11 +594,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -608,7 +608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 20 Jan 2021 23:24:44 GMT + - Thu, 21 Jan 2021 00:17:42 GMT expires: - '-1' odata-version: @@ -649,11 +649,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"06a38138-f710-436c-b022-cceebcd97b3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/5dc1922b5e224882a0fe407958ba77a4\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"cc3dc3bd-0a37-435b-a00d-7afad43446ef\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 20 Jan 2021 23:24:45 GMT + - Thu, 21 Jan 2021 00:17:43 GMT expires: - '-1' odata-version: @@ -714,7 +714,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 23:24:48 GMT + - Thu, 21 Jan 2021 00:17:47 GMT expires: - '-1' pragma: @@ -726,7 +726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -758,7 +758,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 23:24:53 GMT + - Thu, 21 Jan 2021 00:17:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml index 9efde52628f..583c09a4d09 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_job.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"77e32eda-a27a-4259-9bec-4c677a091138\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"4c3854a8-149e-4c11-8be4-c189298cc45e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:54 GMT + - Thu, 21 Jan 2021 00:36:18 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,7 +78,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,17 +86,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"0014e9e5-9baf-4175-b9f1-5256a75b029b\",\"created\":\"2021-01-13T01:20:56.413Z\",\"lastModified\":\"2021-01-13T01:20:56.413Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"a03fb90f-1b48-4c33-813e-cb2bc58a3cd1\",\"created\":\"2021-01-21T00:36:20.5Z\",\"lastModified\":\"2021-01-21T00:36:20.5Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '528' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:57 GMT + - Thu, 21 Jan 2021 00:36:21 GMT expires: - '-1' odata-version: @@ -133,7 +133,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -141,17 +141,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"dfd20bd0-8e9e-48a0-829c-660ecc748bf8\",\"created\":\"2021-01-13T01:20:58.903Z\",\"lastModified\":\"2021-01-13T01:20:58.903Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"864b31ba-7be4-40d0-a9ef-3f11bb5ad7e6\",\"created\":\"2021-01-21T00:36:23.02Z\",\"lastModified\":\"2021-01-21T00:36:23.02Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:59 GMT + - Thu, 21 Jan 2021 00:36:23 GMT expires: - '-1' odata-version: @@ -189,7 +189,7 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -197,7 +197,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:01.140972Z\",\"lastModified\":\"2021-01-13T01:21:01.140972Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T00:36:25.5850847Z\",\"lastModified\":\"2021-01-21T00:36:25.5850847Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -205,11 +205,11 @@ interactions: cache-control: - no-cache content-length: - - '646' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:01 GMT + - Thu, 21 Jan 2021 00:36:25 GMT expires: - '-1' odata-version: @@ -223,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -249,7 +249,7 @@ interactions: - -t -a -g -n --input-asset-name --output-assets --priority --label --correlation-data User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -257,22 +257,22 @@ interactions: response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.824924Z\",\"state\":\"Scheduled\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.2331133Z\",\"state\":\"Scheduled\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2021-01-13T01:21:02.824924Z\",\"outputs\":[\r\n {\r\n - \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n + \ },\"lastModified\":\"2021-01-21T00:36:27.2331133Z\",\"outputs\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Queued\",\"progress\":0,\"label\":\"outputLabel\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '890' + - '892' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:04 GMT + - Thu, 21 Jan 2021 00:36:27 GMT expires: - '-1' odata-version: @@ -305,7 +305,7 @@ interactions: - -a -n -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -313,22 +313,22 @@ interactions: response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.233Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n {\r\n - \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n + \ },\"lastModified\":\"2021-01-21T00:36:27.233Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-21T00:36:28.28Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '967' + - '965' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:05 GMT + - Thu, 21 Jan 2021 00:36:29 GMT expires: - '-1' odata-version: @@ -363,7 +363,7 @@ interactions: - -a -n -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -382,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:21:06 GMT + - Thu, 21 Jan 2021 00:36:30 GMT expires: - '-1' pragma: @@ -411,7 +411,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -419,23 +419,23 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.233Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \ \r\n ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n - \ \r\n ],\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n - \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n + \ \r\n ],\"assetName\":\"asset000004\"\r\n },\"lastModified\":\"2021-01-21T00:36:27.233Z\",\"outputs\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-21T00:36:28.28Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n }\r\n + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n }\r\n \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '1059' + - '1057' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:08 GMT + - Thu, 21 Jan 2021 00:36:31 GMT expires: - '-1' odata-version: @@ -470,7 +470,7 @@ interactions: - -a -n -g -t --description --priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -478,22 +478,22 @@ interactions: response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.233Z\",\"state\":\"Processing\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2021-01-13T01:21:02.823Z\",\"outputs\":[\r\n {\r\n - \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n + \ },\"lastModified\":\"2021-01-21T00:36:27.233Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-21T00:36:28.28Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"High\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '967' + - '965' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:09 GMT + - Thu, 21 Jan 2021 00:36:32 GMT expires: - '-1' odata-version: @@ -536,7 +536,7 @@ interactions: - -a -n -g -t --description --priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -544,22 +544,22 @@ interactions: response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Processing\",\"description\":\"someDescription\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.233Z\",\"state\":\"Processing\",\"description\":\"someDescription\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2021-01-13T01:21:11.192276Z\",\"outputs\":[\r\n {\r\n - \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n + \ },\"lastModified\":\"2021-01-21T00:36:34.9376264Z\",\"outputs\":[\r\n + \ {\r\n \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Processing\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-21T00:36:28.28Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"Low\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1001' + - '1000' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:10 GMT + - Thu, 21 Jan 2021 00:36:35 GMT expires: - '-1' odata-version: @@ -598,7 +598,7 @@ interactions: - -n -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -612,7 +612,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:21:12 GMT + - Thu, 21 Jan 2021 00:36:36 GMT expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -643,7 +643,7 @@ interactions: - -a -n -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -651,22 +651,22 @@ interactions: response: body: string: "{\r\n \"name\":\"job000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007\",\"type\":\"Microsoft.Media/mediaservices/transforms/jobs\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:21:02.823Z\",\"state\":\"Canceling\",\"description\":\"someDescription\",\"input\":{\r\n + \ \"created\":\"2021-01-21T00:36:27.233Z\",\"state\":\"Canceling\",\"description\":\"someDescription\",\"input\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.JobInputAsset\",\"files\":[\r\n \r\n \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\r\n - \ },\"lastModified\":\"2021-01-13T01:21:11.193Z\",\"outputs\":[\r\n {\r\n - \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Canceling\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-13T01:21:04.253Z\",\"assetName\":\"asset000005\"\r\n + \ },\"lastModified\":\"2021-01-21T00:36:34.937Z\",\"outputs\":[\r\n {\r\n + \ \"@odata.type\":\"#Microsoft.Media.JobOutputAsset\",\"state\":\"Canceling\",\"progress\":0,\"label\":\"outputLabel\",\"startTime\":\"2021-01-21T00:36:28.28Z\",\"assetName\":\"asset000005\"\r\n \ }\r\n ],\"priority\":\"Low\",\"correlationData\":{\r\n \"foo\":\"bar\",\"baz\":\"fuzz\"\r\n - \ },\"startTime\":\"2021-01-13T01:21:04.253Z\"\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '996' + - '994' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:13 GMT + - Thu, 21 Jan 2021 00:36:37 GMT expires: - '-1' odata-version: @@ -703,61 +703,7 @@ interactions: - -n -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/transforms/tra000006/jobs/job000007?api-version=2020-05-01 - response: - body: - string: "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": - \"The job Delete operation for '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000006/jobs/job000007' - resource failed. The job is in the 'Canceling' state. Cancel the job or retry - after the processing completes.\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-language: - - en-US - content-length: - - '443' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Jan 2021 01:21:14 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: - - '11999' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams job delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -771,7 +717,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:21:21 GMT + - Thu, 21 Jan 2021 00:36:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml index 17dcc6854f9..11efebfb20a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"d57561ce-c56e-4970-8c6e-04867b4d5dcf\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:29 GMT + - Thu, 21 Jan 2021 00:43:18 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"d57561ce-c56e-4970-8c6e-04867b4d5dcf\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:31 GMT + - Thu, 21 Jan 2021 00:43:18 GMT expires: - '-1' odata-version: @@ -129,7 +129,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -149,19 +149,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:31 GMT + - Thu, 21 Jan 2021 00:43:19 GMT duration: - - '889747' + - '852742' expires: - '-1' ocp-aad-diagnostics-server-name: - - BaUpzbcpe8CsfbLiSVe623GjwTzlV5c+gfKgkBtBCJY= + - WgqwaA7uWY22D4dquXQHPacPhyKRQEER6e6+ocAnyzw= ocp-aad-session-key: - - jodq9Oq2yvOVmYpAjmMYgtlQkkVTcKm8YVwL5CccWMvR_VSbV8kyOPCX-qpKHc55HrV9piwW9ox_hSXMsUxfgLELMhFwcwqwzhBThXhp5sx_vtBmP7mL_4P6_oQY70vw.Z1ChfZ-bG6z5KLG4BiG3dYUBmGy7bYaHlZT3nOr3QSs + - _Iz9CJRcHD30eXBqmCaDuIsrkhQvjEqYbLLjQ3FiYwVwOjnG50ypjbwnS7zj50PMAac7dU89hHwj2leOjScedFEp_YDG11fMuiYHHKgiXbBZVTtbYx2f_NeN22kYjTms.zqpXg-qAGOSXl0qzh2bI1CxQBmDLNxWVcWEySK5Qz5o pragma: - no-cache request-id: - - 2263b270-4f1f-466f-b904-5d7649dec4a2 + - 1af4865d-060f-43f1-af63-5504f32640f2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -177,8 +177,8 @@ interactions: message: OK - request: body: '{"availableToOtherTenants": false, "homepage": "http://clitest.rg000001", - "passwordCredentials": [{"startDate": "2021-01-13T01:23:33.52375Z", "endDate": - "2022-01-13T01:23:33.52375Z", "keyId": "88888888-0000-0000-0000-000000000001", + "passwordCredentials": [{"startDate": "2021-01-21T00:43:20.870152Z", "endDate": + "2022-01-21T00:43:20.870152Z", "keyId": "88888888-0000-0000-0000-000000000001", "value": "ReplacedSPPassword123*"}], "displayName": "clitest.rg000001", "identifierUris": ["http://clitest.rg000001"]}' headers: @@ -191,14 +191,14 @@ interactions: Connection: - keep-alive Content-Length: - - '521' + - '523' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -207,28 +207,28 @@ interactions: body: string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", - "objectId": "761d1e6e-e3c9-4209-992c-e5bd2900d209", "deletionTimestamp": null, - "acceptMappedClaims": null, "addIns": [], "appId": "ec4504d6-e01b-4b6b-b926-e7976363753e", + "objectId": "07cff196-0148-432f-b8b3-ddfbd8167fa4", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "44f6923a-f2cf-43c4-8dc6-b46bc5e9b857", "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": false, "displayName": "clitest.rg000001", "errorUrl": null, "groupMembershipClaims": null, "homepage": "http://clitest.rg000001", "identifierUris": ["http://clitest.rg000001"], "informationalUrls": {"termsOfService": null, "support": null, "privacy": null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": - "directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo", + "directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/logo", "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", - "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/mainLogo", "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": "Allow the application to access clitest.rg000001 on behalf of the signed-in - user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "d2e96590-98b5-4e52-99b1-7ad31dbcee20", + user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "586f9e13-227b-4930-ab1e-6eef119d84b1", "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application to access clitest.rg000001 on your behalf.", "userConsentDisplayName": "Access clitest.rg000001", "value": "user_impersonation"}], "oauth2RequirePostResponse": false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": - [{"customKeyIdentifier": null, "endDate": "2022-01-13T01:23:33.52375Z", "keyId": - "88888888-0000-0000-0000-000000000001", "startDate": "2021-01-13T01:23:33.52375Z", + [{"customKeyIdentifier": null, "endDate": "2022-01-21T00:43:20.870152Z", "keyId": + "88888888-0000-0000-0000-000000000001", "startDate": "2021-01-21T00:43:20.870152Z", "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": @@ -239,27 +239,27 @@ interactions: cache-control: - no-cache content-length: - - '2682' + - '2684' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:32 GMT + - Thu, 21 Jan 2021 00:43:20 GMT duration: - - '6211795' + - '6201476' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - H9an+qrvBeT3NN3b3xSppbQhDiR9CXe5UeASTHq/18Y= + - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= ocp-aad-session-key: - - kUpUL4BTLT_S3ppufaQ1bW8j-m0mo-A0MxPPvl6lWDNjEv1DYskwPYFoRqr_TvaH4MRRIRPfgkXHUF1RJqIQ6-gCjQnBeSso4lfDkvQMOioxPDR3NFDhdmXLQ6bjUlfNHNTCmG2WMk3Zyz4oGnq_GjkX8Z81klSlmLyYLAokDOE.mel86VgErMlPD4TMxkEJtLtqv2Nt-XmoHVtn-citEZg + - VkUrOSY4OD5Q3SZVemy3VbGfSZuTYGGExer2NHYd6T42EfcsU9FozcGvVG6kdezg5otbkQXPPBL5fveS4oYyIUrFRnTDt9B6JYEgDntQkq5JXSyeppsXHOoUeu0qqMEWrRf0kOQ_rWCR6W-I3mZyqyHGzRM57w645u5-OsQYcgw.sbVE8Ps_BYoxpmwxxAHHN-_rM34H0-DjdpLXJXFoE0E pragma: - no-cache request-id: - - e0c978ea-e492-40d0-bb1e-94fca3ab18be + - 9cd0fe99-8304-469d-adcb-383a72cbebf0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -274,7 +274,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "ec4504d6-e01b-4b6b-b926-e7976363753e"}' + body: '{"accountEnabled": "True", "appId": "44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"}' headers: Accept: - application/json @@ -292,18 +292,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.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":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4b80044f-a3dc-4a89-be8d-97d29fe9da5c","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"586f9e13-227b-4930-ab1e-6eef119d84b1","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["ec4504d6-e01b-4b6b-b926-e7976363753e","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' @@ -316,21 +316,21 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:33 GMT + - Thu, 21 Jan 2021 00:43:20 GMT duration: - - '3623115' + - '3628073' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/bf75307c-0eec-441c-95d0-9ee87c40b7b6/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/4b80044f-a3dc-4a89-be8d-97d29fe9da5c/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - osGKancLhd8UTEy9Q1DbwbQ0zPgJWv66y2a6AqlkY7w= + - pH09e0MAr+szgnSxhvrjJJGK/1HRjD2NsdZMgTOMFK0= ocp-aad-session-key: - - 0Mtz1-nOFtMLudDD0zXJqNSyJWkH4MTNFbmxntmc0vjJ8rTM8swaLMtJhORmNM9v1eANZx28VVmqe7-3CaokLb6dYxZSzV5cgrcSGuPSdzbPgSCIlBZAT43GkX6FKS1B7fb9nvMPB2J8DWu1y8D6sq8TpKJ7thQsw7OwVvAJJ4E.qTRwGRH8ced9ZomtNBVgBZtxfRFbWN9OnoN3B3peeRE + - bpJVJ_-rplmnZ289Ohk6lqTK_4D4LedY68Yd9VHfILvMtS0PhuxSxfDV2Qj9TCEe_YPUsIRwNG0UP8JvuV7F0rVJF2h3wsvGs8ozEVjXvnzSphtYve9S-rusmTubpPtR3C3qBVF1SHx85WA9_RxxKxyX7EiTnfvcsvxIUxeOvmU.btpTiISDafaL5G8lvTI-9GyNRTXGc9MkXMuSS6ti3Nw pragma: - no-cache request-id: - - 22e43eee-1bc5-4161-96b1-ebb778e84a7e + - 35ebe196-855d-4c55-8dc4-844ce6b54a9a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -359,11 +359,11 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27bf75307c-0eec-441c-95d0-9ee87c40b7b6%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%274b80044f-a3dc-4a89-be8d-97d29fe9da5c%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -375,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:33 GMT + - Thu, 21 Jan 2021 00:43:20 GMT expires: - '-1' pragma: @@ -408,7 +408,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -426,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:34 GMT + - Thu, 21 Jan 2021 00:43:21 GMT expires: - '-1' pragma: @@ -446,7 +446,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' + "principalId": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' headers: Accept: - application/json @@ -466,14 +466,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 4b80044fa3dc4a89be8d97d29fe9da5c does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' headers: cache-control: @@ -483,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:34 GMT + - Thu, 21 Jan 2021 00:43:22 GMT expires: - '-1' pragma: @@ -514,7 +514,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -532,7 +532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:40 GMT + - Thu, 21 Jan 2021 00:43:27 GMT expires: - '-1' pragma: @@ -552,7 +552,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' + "principalId": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' headers: Accept: - application/json @@ -572,14 +572,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 4b80044fa3dc4a89be8d97d29fe9da5c does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' headers: cache-control: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:40 GMT + - Thu, 21 Jan 2021 00:43:27 GMT expires: - '-1' pragma: @@ -601,7 +601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 400 message: Bad Request @@ -620,7 +620,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:45 GMT + - Thu, 21 Jan 2021 00:43:33 GMT expires: - '-1' pragma: @@ -658,7 +658,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' + "principalId": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' headers: Accept: - application/json @@ -678,120 +678,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal bf75307c0eec441c95d09ee87c40b7b6 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Jan 2021 01:23:45 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams account sp create - Connection: - - keep-alive - ParameterSetName: - - -a -n -g -p --role - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Owner%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Grants - full access to manage all resources, including the ability to assign roles - in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:13:58.4137852Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}]}' - headers: - cache-control: - - no-cache - content-length: - - '654' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Jan 2021 01:23:52 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "bf75307c-0eec-441c-95d0-9ee87c40b7b6"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams account sp create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -a -n -g -p --role - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T01:23:52.5261492Z","updatedOn":"2021-01-13T01:23:52.6654841Z","createdBy":null,"updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000005"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b80044f-a3dc-4a89-be8d-97d29fe9da5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-21T00:43:33.7375889Z","updatedOn":"2021-01-21T00:43:34.1176218Z","createdBy":null,"updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' headers: cache-control: - no-cache @@ -800,7 +694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:35 GMT expires: - '-1' pragma: @@ -812,7 +706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created @@ -831,7 +725,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -839,7 +733,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"6078c0ba-d7fa-47c2-bc0a-721ef679ae61\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"d57561ce-c56e-4970-8c6e-04867b4d5dcf\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -852,7 +746,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:35 GMT expires: - '-1' odata-version: @@ -887,18 +781,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 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%2Fclitest.rg000001%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.ServicePrincipal","objectType":"ServicePrincipal","objectId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4b80044f-a3dc-4a89-be8d-97d29fe9da5c","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"586f9e13-227b-4930-ab1e-6eef119d84b1","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","ec4504d6-e01b-4b6b-b926-e7976363753e"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -911,19 +805,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:35 GMT duration: - - '585585' + - '582516' expires: - '-1' ocp-aad-diagnostics-server-name: - - NecIdAbtcl2G5DavAD0ay+NyJ0bZ8m4qvkKAOpQmV0w= + - CNP5kG643VEgWAuQgd9JNUJQ6e3AstHM9HY6G3AdeCY= ocp-aad-session-key: - - R2SuhBB_k9ymY89ZoHeuxzmmTo8zPU-AhZdznZfkFZ5kNhzwTgSrqmyf7bEYP-v53BENnYmoh1NHR1biz8hq3WrMMINr2mCaIzONePPjINOZjNMj8RSQ6Y9YUR7jYyKR_YapORw7t8v9xjGLHlsmMJan8_1lBJciBY3MpfyBDoE.pJ5B_b3OBR1EmZ1kJlpftmAPRK83qfFnHfUnayjY0jo + - 3rufLj41nXuekfaPjbqwvZDVwQHw2vTq7otpJY453HMglwENnDAy7H4Jglzwbm58_lH62YpEHnt9eWX4nzQ483ERqhaS-8oWwC1CpUCUG9EYtZ3_rdJSTpw4B4PPyKVCPqaug6AdYm-L3S0xO7Jd2qWM9CodHKbaS9p2DVcEdWo.t_l5sJ-vqFJvkKxkGek2oclH6RGHhK6dEBC4lOiuvh8 pragma: - no-cache request-id: - - e7eda32b-4a25-48a1-bc5b-f21c21f04bd1 + - 85740125-728a-418f-ad0b-fc21ee35d98a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -952,43 +846,43 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27ec4504d6-e01b-4b6b-b926-e7976363753e%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%2744f6923a-f2cf-43c4-8dc6-b46bc5e9b857%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":"761d1e6e-e3c9-4209-992c-e5bd2900d209","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"07cff196-0148-432f-b8b3-ddfbd8167fa4","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"586f9e13-227b-4930-ab1e-6eef119d84b1","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-21T00:43:20.870152Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-21T00:43:20.870152Z","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: - - '2599' + - '2601' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '560107' + - '565776' expires: - '-1' ocp-aad-diagnostics-server-name: - - d1JB6ucVep7/SQwUJWs6eqivZfWvC07ij1sG/PhNZn0= + - ISbjmcjIryw8imO8hLdMu3pPCFK4JbNjsBFNQwzSQzU= ocp-aad-session-key: - - LBqqHvLRedzEShSGK-DIoT-tyB1UKTp1GhJmQxmAR4p5BSuzl08L00Rxh11D3nWmXzNhmwLqAm_ABmLF4qiVs6BIsjBzKsNfjD-LFnsLJUmGUYqQeIaP2pwaIu8VkY1uXpxAek0FB9BYDkODvTNI0bf-OnEaEjsSut4x7V-jYB0.NZRd7XWeEtdrSfyEVEuz3NguUSSFtNQL_EsuWhGBo3w + - 2LF6r5sXlYZLyAdFi7g49Zk4-bDzakkijwIrdfQbDYNCx1cZUuyV_uP6bdDE4SzRbSgzmP2ixql1LfIkjRBTRg92QFBhyZdaexXkNyZYh4ZnlrM9ySltmkkBbf1eRig05DNdt8enCdjpX3rqg1AacWrmcMKCDvboUkaVNrjIh44.i-uwmw9Vur2OE4Xwrst36vkGnoTRCygjqQif_PqVReo pragma: - no-cache request-id: - - 912aa5a8-7234-4f69-93b1-0df8b94f8219 + - 5aeb1d99-e439-40bc-8a83-eb1cb3186cd9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1017,39 +911,39 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/07cff196-0148-432f-b8b3-ddfbd8167fa4/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2022-01-21T00:43:20.870152Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-21T00:43:20.870152Z","value":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '331' + - '333' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '534977' + - '656823' expires: - '-1' ocp-aad-diagnostics-server-name: - - vdUmtydNTpMx136Z9PTgdhjXCVJ7LZw+B1PUKRqBNeo= + - tqsvrwCmDhrCSNHu2t6CdV0LI4CjAgREZGXRcEu5W18= ocp-aad-session-key: - - KFCtKVBeyTr1jpIXe16cicsB88O6YWDpFuH9dKLtnAtTca0CbvvBbflRiYdMEGfXvOeVn2Zqvx9eomluk5o1VgckICmxs3FdewTRcB9R2SZWN0sdTkF99208TK5oXWrEplacW4ESc_M7Ts94dusQpKDWQDzyDPUuoqWNHK3kXbo.5dvxjoYsw-dN6VsK247dS7WJMJjWVkv3IOCsE1a8Zu8 + - _h1vYcnBZHJuP2jjAJukjto5APl70jgE_dEvylKShl9eAR2C72m217YXfvTZEUYS-YLvU3vqNhIDfZjCRUhDDukz4jHmFy6GKKLAXLAmWO3Wzc6irMVjh40La2LGQwtkBGX5NkclsBeNFCOMDAh9_IzY8VPgbrxRlaW-46WVMgQ.jvfDeMObug0ELq2hBVoTufMkvdO0cXLU2E0SF-fGezc pragma: - no-cache request-id: - - 7f0c59de-b2d1-4264-8d56-23a737f7a547 + - fe6b4cc1-ed41-4584-8acd-b206959f78de strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1064,9 +958,9 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2021-01-13T01:23:33.52375Z", "endDate": "2022-01-13T01:23:33.52375Z", - "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2021-01-13T01:23:56.302161Z", - "endDate": "2022-01-13T01:23:56.302161Z", "keyId": "88888888-0000-0000-0000-000000000006", + body: '{"value": [{"startDate": "2021-01-21T00:43:20.870152Z", "endDate": "2022-01-21T00:43:20.870152Z", + "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2021-01-21T00:43:37.518778Z", + "endDate": "2022-01-21T00:43:37.518778Z", "keyId": "88888888-0000-0000-0000-000000000005", "value": "spp!000005"}]}' headers: Accept: @@ -1078,18 +972,18 @@ interactions: Connection: - keep-alive Content-Length: - - '312' + - '314' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/07cff196-0148-432f-b8b3-ddfbd8167fa4/passwordCredentials?api-version=1.6 response: body: string: '' @@ -1099,19 +993,19 @@ interactions: cache-control: - no-cache date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:43:37 GMT duration: - - '4698927' + - '3485783' expires: - '-1' ocp-aad-diagnostics-server-name: - - +EOS4aiuOEFJVZdbhjMw16/+oK92lidT3YUz+JU856Q= + - VRduinh48wLsWX4gv475GCgG1fPJPOTtSGWFaOBDTQM= ocp-aad-session-key: - - 6SgMm__HYHIIKWEayKF1OuaklL38BxO57jUV_QXEsFP5uQzUIJj33byhHBr3I9wWjI7juDOZ3s5t2DROFqTv23iaMjzCEXdWbd59rK2lx8XDDOSBlop7i-A3QoCFv_sCFLzZUMANFKofSjDshdIAXPf7EUK9b2Cd6p78dvPM3wU.Mw07igz-txV1JyLR11JYJyz9GEGhqOOSxKZXEwKzefw + - DT9KkEaNEYAHqjwySo4DP8MVZE2WQ0pQOajisEdt9KB6KxrUQpjNRfS2ujo-NvzrPSdqqiDwduLglHwibOyiN3Jp4hpH0zWxNMHmioKztqCqfdbspBnuSwc3FyQMo4xrp0MYWbLrOIdMHTyau6mEfePpBsuva42SSfF_mJaFamU.-r8tzbpQKMCfjzR7GUPHnOFiMfC8yjkp5TYPC7VfLzw pragma: - no-cache request-id: - - e1c1d12e-c6dd-4cac-9938-5cc3f9083dc2 + - 248bf20c-61ad-4849-82ca-c0952da167f3 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1140,14 +1034,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27bf75307c-0eec-441c-95d0-9ee87c40b7b6%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%274b80044f-a3dc-4a89-be8d-97d29fe9da5c%27&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T01:23:53.1964431Z","updatedOn":"2021-01-13T01:23:53.1964431Z","createdBy":"508c96e0-d4ff-4c30-b886-34c377353339","updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000005","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000005"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b80044f-a3dc-4a89-be8d-97d29fe9da5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-21T00:43:35.0926224Z","updatedOn":"2021-01-21T00:43:35.0926224Z","createdBy":"508c96e0-d4ff-4c30-b886-34c377353339","updatedBy":"508c96e0-d4ff-4c30-b886-34c377353339","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}]}' headers: cache-control: - no-cache @@ -1156,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:55 GMT + - Thu, 21 Jan 2021 00:43:36 GMT expires: - '-1' pragma: @@ -1191,7 +1085,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -1237,7 +1131,7 @@ interactions: Management Service Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read-only access to service and APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:26:45.1540473Z\",\"updatedOn\":\"2017-01-23T23:10:34.8876776Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"71522526-b88f-4d52-b57f-d31fc3546d0d\"},{\"properties\":{\"roleName\":\"Application Insights Component Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage Application Insights components\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/webtests/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2020-02-12T12:45:46.9200472Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae349356-3a1b-4a5e-921d-050484c6347e\"},{\"properties\":{\"roleName\":\"Application + manage Application Insights components\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/generateLiveToken/read\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/topology/read\",\"Microsoft.Insights/transactions/read\",\"Microsoft.Insights/webtests/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-01-19T19:26:12.8117169Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae349356-3a1b-4a5e-921d-050484c6347e\"},{\"properties\":{\"roleName\":\"Application Insights Snapshot Debugger\",\"type\":\"BuiltInRole\",\"description\":\"Gives user permission to use Application Insights Snapshot Debugger features\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T21:25:12.3728747Z\",\"updatedOn\":\"2017-04-19T23:34:59.9511581Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"},{\"properties\":{\"roleName\":\"Attestation Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read the attestation @@ -1265,7 +1159,7 @@ interactions: Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access to billing data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Billing/*/read\",\"Microsoft.Commerce/*/read\",\"Microsoft.Consumption/*/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T02:13:38.9054151Z\",\"updatedOn\":\"2018-09-26T17:45:09.2227236Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"},{\"properties\":{\"roleName\":\"Backup Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup - services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2019-12-17T11:02:43.9998686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Backup + services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/locations/backupAadProperties/read\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\",\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2021-01-19T09:16:14.1372232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Backup Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view backup services, but can't make changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2020-03-04T12:12:04.3213110Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"},{\"properties\":{\"roleName\":\"Blockchain Member Node Access (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows @@ -1532,13 +1426,13 @@ interactions: read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2019-10-25T18:45:33.7975332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"},{\"properties\":{\"roleName\":\"Kubernetes Cluster - Azure Arc Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Role definition to authorize any user/service to create connectedClusters resource\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2020-02-10T22:40:48.3317559Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"},{\"properties\":{\"roleName\":\"Experimentation - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2020-07-07T20:17:06.8223079Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Cognitive + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2021-01-15T19:52:14.7258065Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Cognitive Services QnA Maker Reader\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s you read and test a KB only.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:26:12.3329439Z\",\"updatedOn\":\"2020-05-08T12:03:46.9266538Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"466ccd10-b268-4a11-b098-b4849f024126\"},{\"properties\":{\"roleName\":\"Cognitive Services QnA Maker Editor\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:27:30.6434556Z\",\"updatedOn\":\"2020-05-08T12:02:34.0065552Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"},{\"properties\":{\"roleName\":\"Experimentation Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation - Administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\",\"Microsoft.Experimentation/experimentWorkspaces/admin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"updatedOn\":\"2020-04-22T20:10:20.1216929Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Remote + Administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\",\"Microsoft.Experimentation/experimentWorkspaces/admin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"updatedOn\":\"2021-01-15T19:52:38.8031214Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Remote Rendering Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:15:31.3450348Z\",\"updatedOn\":\"2020-01-23T18:15:31.3450348Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"},{\"properties\":{\"roleName\":\"Remote @@ -1760,16 +1654,23 @@ interactions: Snapshot Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission to backup vault to manage disk snapshots.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\",\"Microsoft.Compute/snapshots/endGetAccess/action\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:51.4471411Z\",\"updatedOn\":\"2021-01-06T04:00:07.5681241Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7efff54f-a5b4-42b5-a1c5-5411624893ce\"},{\"properties\":{\"roleName\":\"Microsoft.Kubernetes connected cluster role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Kubernetes - connected cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\",\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-01-07T23:57:10.9923232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"}]}" + connected cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\",\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-01-07T23:57:10.9923232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Submission Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to create and manage submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T09:35:36.5739297Z\",\"updatedOn\":\"2021-01-18T10:59:51.9718766Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a37b566d-3efa-4beb-a2f2-698963fa42ce\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to publish and modify platforms, workflows and toolsets to Security Detonation + Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/platforms/read\",\"Microsoft.SecurityDetonation/chambers/platforms/write\",\"Microsoft.SecurityDetonation/chambers/workflows/read\",\"Microsoft.SecurityDetonation/chambers/workflows/write\",\"Microsoft.SecurityDetonation/chambers/workflows/delete\",\"Microsoft.SecurityDetonation/chambers/toolsets/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/write\",\"Microsoft.SecurityDetonation/chambers/toolsets/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T11:43:14.0858184Z\",\"updatedOn\":\"2021-01-18T11:57:43.9320729Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"352470b3-6a9c-4686-b503-35deb827e500\"},{\"properties\":{\"roleName\":\"Collaborative + Runtime Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can manage resources + created by AICS at runtime\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/pipelineSets/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-19T10:00:27.3464971Z\",\"updatedOn\":\"2021-01-19T10:12:37.3865830Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7a6f0e70-c033-4fb1-828c-08514e5f4102\"}]}" headers: cache-control: - no-cache content-length: - - '272636' + - '276317' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:23:56 GMT + - Thu, 21 Jan 2021 00:43:37 GMT expires: - '-1' pragma: @@ -1788,7 +1689,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["bf75307c-0eec-441c-95d0-9ee87c40b7b6"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["4b80044f-a3dc-4a89-be8d-97d29fe9da5c"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1807,18 +1708,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.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.ServicePrincipal","objectType":"ServicePrincipal","objectId":"bf75307c-0eec-441c-95d0-9ee87c40b7b6","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4b80044f-a3dc-4a89-be8d-97d29fe9da5c","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"586f9e13-227b-4930-ab1e-6eef119d84b1","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","ec4504d6-e01b-4b6b-b926-e7976363753e"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1831,19 +1732,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:55 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '589760' + - '600832' expires: - '-1' ocp-aad-diagnostics-server-name: - - bjwfCHqIrtGB+z8zTamk9qnExmWtx2/qGwNbbFSoSzc= + - gs8C01f5KRN9nNLnTmZX5CWrEWq6NpXoaIB755uhVTs= ocp-aad-session-key: - - a7xHcnIYcHnBTcWQex-7CntalMpl8W1MC7tbPUmlPDhxQGGd4vbjyGuKX1M_p4aHVQVftwnaR17vjVsFAZyLogfFXlllCSRqe-ti06rfLgil4-JZKliBMMutAVX1Y5YvYCLVfjYU14wVoD7m6fIdn5JuNvMIa0MHmQVB7EIk8LA.ICDDPmPDdkbvfyy0k0rMOWDl-0sgmZHCwLBro26l0dk + - dTiJtmMxp1lMxshiB2f8yGCraLzlNusAFrCng6VNM_TuuKXUTpCI4iOLhZmFjTQRM0IwMFu1LBBd2gnZL1gnOYcmYjhJ8k2HVMmcz5E2sf9TgA4pP8jwcoBHzPYpjknP25lycHF9wHn-NpW9uFdcMuFH7BNpvF5S2LU09fLFpKM.4jUzMlYDOGsxbadHgSk-j7XvXzfWun9WTtzR2ZIJUCs pragma: - no-cache request-id: - - 9c1d3f84-35dd-411d-8317-f95b9a1fcee8 + - 9913608e-1e23-4df1-901e-4d4a040dcabf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1872,43 +1773,43 @@ interactions: - --id User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest.rg000001%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.Application","objectType":"Application","objectId":"761d1e6e-e3c9-4209-992c-e5bd2900d209","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"ec4504d6-e01b-4b6b-b926-e7976363753e","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/761d1e6e-e3c9-4209-992c-e5bd2900d209/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"07cff196-0148-432f-b8b3-ddfbd8167fa4","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"d2e96590-98b5-4e52-99b1-7ad31dbcee20","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"586f9e13-227b-4930-ab1e-6eef119d84b1","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:56.302161Z","keyId":"88888888-0000-0000-0000-000000000006","startDate":"2021-01-13T01:23:56.302161Z","value":null},{"customKeyIdentifier":null,"endDate":"2022-01-13T01:23:33.52375Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-13T01:23:33.52375Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2022-01-21T00:43:37.518778Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2021-01-21T00:43:37.518778Z","value":null},{"customKeyIdentifier":null,"endDate":"2022-01-21T00:43:20.870152Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-21T00:43:20.870152Z","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: - - '2770' + - '2772' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 13 Jan 2021 01:23:56 GMT + - Thu, 21 Jan 2021 00:43:37 GMT duration: - - '550535' + - '549380' expires: - '-1' ocp-aad-diagnostics-server-name: - - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + - lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI= ocp-aad-session-key: - - yfO46sqU7cnSE9NP-QHg97JIeYgYEbETuUYUCcBG3H9HvQqmNs5muvmn6rWZrz2792MTE2NaUCCKyJOQZVQMYwDqO5e2NJkBzo2-d8DCga8dc4M1LzApxBsfjY_EYQtoImSUaqKfVdladcZyOL2PVngbntCxDWQAadbuKYiAXMs.CqEolT05pH--YStDIJ30iNC0VEJntb_XTNeIHNLj5tU + - WjQy2_UBUo3wbh4F_N-jSrl6Ii8joGm9yaw69HHWJ42VjiqRzJFHucdCi3jjvtClMmXHpZNGVcPpkJWnsxkjh6VEUKo7Ziks3s3GdVmYtJkOOQharnluz5E9pBe2JrqhoKU72YnUAmoPVXGwMlPH5jKyQiosmg8LEHkw_6EZW1w.sz-rZizZyzFb9yOaMCCZnb3AYxUycLgO7RnVIf21WD4 pragma: - no-cache request-id: - - 5493e74e-80d1-4d02-a1d5-338d74eef8f2 + - d801f2c7-90e9-4907-8914-2be5c313be84 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1939,11 +1840,11 @@ interactions: - --id User-Agent: - python/3.8.2 (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.15.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/761d1e6e-e3c9-4209-992c-e5bd2900d209?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/07cff196-0148-432f-b8b3-ddfbd8167fa4?api-version=1.6 response: body: string: '' @@ -1953,19 +1854,19 @@ interactions: cache-control: - no-cache date: - - Wed, 13 Jan 2021 01:23:57 GMT + - Thu, 21 Jan 2021 00:43:38 GMT duration: - - '3384132' + - '3415772' expires: - '-1' ocp-aad-diagnostics-server-name: - - EAp7u9CsSCiK4NVbGNE1YMiF2wiR1HRkkGEUJbMfUOU= + - IzxFlPMFduzqKtZga1KDCE1a7182L8epCq32WdJKL+E= ocp-aad-session-key: - - _EY-_FBXotIHGyChQsxuA9Jr-lqCK1gM6-Vt5JtuqJI573AbyKI7zeP1wD5gis3AiH8VtOdHlQFCOp4-cxRdJOHPlL5gWa0XcHKlQHkxhzotPWKdOGa9LPfThUnMw_dVFGDEkKBW42Cxc4_yCyh1fNL4Eb4ItglJ4cLouatsyE4.NS2Tn6T6Pv1_hqkocXCW-j9ovVtAY5vNdRJGKzozW-g + - J5aHwluxXbBjflcftvxQQZbr1iFg231aPyno7WyZZ1XagClH3TFI9sPLz-_9CuVuYZ70EhHN2bwYWC3Co3oKyC8s4c9GYwznvyJ4jT8qXPQT3791i6WOds_pbiTplHoBn-CZxlGl5PK8ElVrnni0JdUUnJ5p8t6eWtLhtLYUpwo.r7TyNMNr9yJcgyu8aN6_PG2bKNr9wF8Eg8vf8e-3_so pragma: - no-cache request-id: - - 1f93dd6c-1777-4e06-865b-8de8ee5e37fe + - bdd84b94-0e42-4eb7-b353-69d1cb249d93 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml index ffb627d6ee3..0feed5a1582 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:30 GMT + - Thu, 21 Jan 2021 00:24:20 GMT expires: - '-1' odata-version: @@ -73,7 +73,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:31 GMT + - Thu, 21 Jan 2021 00:24:21 GMT expires: - '-1' odata-version: @@ -135,7 +135,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -143,7 +143,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n @@ -157,7 +157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:33 GMT + - Thu, 21 Jan 2021 00:24:23 GMT expires: - '-1' odata-version: @@ -190,7 +190,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -198,7 +198,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n @@ -212,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:34 GMT + - Thu, 21 Jan 2021 00:24:24 GMT expires: - '-1' odata-version: @@ -252,7 +252,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -260,7 +260,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"552c63b1-e385-4b33-8626-2b32a3310e59\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -273,7 +273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:36 GMT + - Thu, 21 Jan 2021 00:24:27 GMT expires: - '-1' odata-version: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml index 6d2c5cbd598..fe997e83a4b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"0fd249ce-2783-41c2-93ef-ab5562f61c98\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"88f3ed5c-5b63-4bfe-8197-968e37e70801\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:27 GMT + - Thu, 21 Jan 2021 00:45:04 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -75,7 +75,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -83,7 +83,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"0fd249ce-2783-41c2-93ef-ab5562f61c98\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"88f3ed5c-5b63-4bfe-8197-968e37e70801\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -96,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:28 GMT + - Thu, 21 Jan 2021 00:45:06 GMT expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -163,11 +163,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:29.5399857Z\",\"lastModified\":\"2021-01-13T01:23:29.5399857Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:08.3939156Z\",\"lastModified\":\"2021-01-21T00:45:08.3939156Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -175,11 +175,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:30 GMT + - Thu, 21 Jan 2021 00:45:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -211,17 +211,71 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"28afce95-b4dd-46d5-8fea-dc8c01df88dd\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"8cbdbf27-7095-4146-8894-e356fbe52d06\"\r\n + string: "{\r\n \"name\":\"14915aa6-db4d-4b84-b608-400ae716eece\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2bc9c822-b036-4989-b4bf-f5c8c8a22ac1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/28afce95-b4dd-46d5-8fea-dc8c01df88dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:11 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"14915aa6-db4d-4b84-b608-400ae716eece\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2bc9c822-b036-4989-b4bf-f5c8c8a22ac1\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -229,7 +283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:31 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -265,7 +319,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -280,7 +334,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:29.5711541Z\",\"lastModified\":\"2021-01-13T01:23:31.4567547Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:08.4094481Z\",\"lastModified\":\"2021-01-21T00:45:12.1387062Z\"\r\n \ }\r\n}" headers: cache-control: @@ -290,7 +344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:32 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -327,7 +381,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -337,17 +391,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:23:33 GMT + - Thu, 21 Jan 2021 00:45:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 pragma: - no-cache server: @@ -376,17 +430,123 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"22f27eb4-e592-41f8-ad11-f5931a131251\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2bc9c822-b036-4989-b4bf-f5c8c8a22ac1\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:17 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"22f27eb4-e592-41f8-ad11-f5931a131251\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2bc9c822-b036-4989-b4bf-f5c8c8a22ac1\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:19 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"2cc138f5-c120-4e1a-8201-4356709d89c7\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"22f27eb4-e592-41f8-ad11-f5931a131251\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2cc138f5-c120-4e1a-8201-4356709d89c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -394,7 +554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:35 GMT + - Thu, 21 Jan 2021 00:45:21 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml index 235fabd69aa..dee59c71ea2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"934787f0-0287-4044-9093-e82cbf0b40fa\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"e31c6166-bfed-4499-9488-b6c7095b1c2b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:44 GMT + - Thu, 21 Jan 2021 00:45:03 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"934787f0-0287-4044-9093-e82cbf0b40fa\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"e31c6166-bfed-4499-9488-b6c7095b1c2b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:45 GMT + - Thu, 21 Jan 2021 00:45:05 GMT expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -166,11 +166,11 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4679767Z\",\"lastModified\":\"2021-01-13T01:23:47.4679767Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:07.4053224Z\",\"lastModified\":\"2021-01-21T00:45:07.4053224Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -178,11 +178,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:47 GMT + - Thu, 21 Jan 2021 00:45:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -194,7 +194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -214,17 +214,71 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"5b0c26db-3ee3-492f-b318-16a04ca393aa\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"80aa809d-6ada-4d01-b740-e84bb74faa45\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:11 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --ips --description --max-cache-age --scale-units --tags --client-access-policy + --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"f2b0ead6-4fe0-464a-9f48-c23367bf4825\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"fc870d05-2e98-4144-8d3c-6d7eb6f6bed6\"\r\n + string: "{\r\n \"name\":\"5b0c26db-3ee3-492f-b318-16a04ca393aa\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"80aa809d-6ada-4d01-b740-e84bb74faa45\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f2b0ead6-4fe0-464a-9f48-c23367bf4825?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -232,7 +286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:50 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -268,7 +322,7 @@ interactions: --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -287,17 +341,17 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:49.831052Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:11.2500917Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1899' + - '1900' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:50 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -332,7 +386,7 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -353,17 +407,17 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:49.831052Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:11.2500917Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1899' + - '1900' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:53 GMT + - Thu, 21 Jan 2021 00:45:14 GMT expires: - '-1' odata-version: @@ -414,7 +468,7 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -447,7 +501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:53 GMT + - Thu, 21 Jan 2021 00:45:16 GMT expires: - '-1' odata-version: @@ -465,7 +519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK @@ -484,7 +538,7 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -507,7 +561,7 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.4992094Z\",\"lastModified\":\"2021-01-13T01:23:53.4619604Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-euno.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:15.7114274Z\"\r\n \ }\r\n}" headers: cache-control: @@ -517,7 +571,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:45:17 GMT expires: - '-1' odata-version: @@ -567,7 +621,7 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -599,7 +653,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:55 GMT + - Thu, 21 Jan 2021 00:45:18 GMT expires: - '-1' odata-version: @@ -617,7 +671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -638,7 +692,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -648,17 +702,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:23:56 GMT + - Thu, 21 Jan 2021 00:45:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 pragma: - no-cache server: @@ -668,7 +722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' status: code: 202 message: Accepted @@ -687,17 +741,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e47210e3-1fc6-4b4f-9353-6fd0137f7a14\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e47210e3-1fc6-4b4f-9353-6fd0137f7a14?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -705,7 +759,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:58 GMT + - Thu, 21 Jan 2021 00:45:23 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml index cc15ae80bbc..9c9d059afb4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create_with_akamai_without_ips.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"320c8355-e643-40b4-9593-252ed3b0aaf2\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"2d843aaf-60a1-4dee-ab4c-5146de0a48cd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:41 GMT + - Thu, 21 Jan 2021 00:45:29 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"320c8355-e643-40b4-9593-252ed3b0aaf2\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"2d843aaf-60a1-4dee-ab4c-5146de0a48cd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:41 GMT + - Thu, 21 Jan 2021 00:45:29 GMT expires: - '-1' odata-version: @@ -135,7 +135,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -146,11 +146,11 @@ interactions: Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.4747993Z\",\"lastModified\":\"2021-01-13T01:23:43.4747993Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:31.3324454Z\",\"lastModified\":\"2021-01-21T00:45:31.3324454Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0ef11227-3737-4317-a2a6-4ed0bab18cdb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -158,11 +158,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:43 GMT + - Thu, 21 Jan 2021 00:45:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/0ef11227-3737-4317-a2a6-4ed0bab18cdb?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -174,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' status: code: 201 message: Created @@ -193,17 +193,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0ef11227-3737-4317-a2a6-4ed0bab18cdb?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c9711770-e613-4bd7-90cd-08ecd81044fc\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f8f1f699-2c0c-416c-8233-3b5b96fbdf71\"\r\n + string: "{\r\n \"name\":\"0ef11227-3737-4317-a2a6-4ed0bab18cdb\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1705c419-d8c2-4271-ae72-0184bf2f0609\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c9711770-e613-4bd7-90cd-08ecd81044fc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/0ef11227-3737-4317-a2a6-4ed0bab18cdb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:46 GMT + - Thu, 21 Jan 2021 00:45:34 GMT expires: - '-1' odata-version: @@ -246,24 +246,24 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:45.4457919Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:31.3480844Z\",\"lastModified\":\"2021-01-21T00:45:33.399563Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '871' + - '870' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:46 GMT + - Thu, 21 Jan 2021 00:45:34 GMT expires: - '-1' odata-version: @@ -298,7 +298,7 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -307,17 +307,17 @@ interactions: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Canada Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:45.4457919Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:31.3480844Z\",\"lastModified\":\"2021-01-21T00:45:33.399563Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '871' + - '870' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:47 GMT + - Thu, 21 Jan 2021 00:45:35 GMT expires: - '-1' odata-version: @@ -359,7 +359,7 @@ interactions: - -g -a -n --identifier --expiration --base64-key User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -380,7 +380,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:48 GMT + - Thu, 21 Jan 2021 00:45:35 GMT expires: - '-1' odata-version: @@ -398,7 +398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -417,7 +417,7 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -428,7 +428,7 @@ interactions: Central\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":3,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":{\r\n \"akamaiSignatureHeaderAuthenticationKeyList\":[\r\n \ {\r\n \"identifier\":\"id1\",\"expiration\":\"2031-01-01T00:00:00Z\",\"base64Key\":\"dGVzdGlkMQ==\"\r\n - \ }\r\n ]\r\n },\"ip\":null\r\n },\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:43.5060314Z\",\"lastModified\":\"2021-01-13T01:23:48.0912157Z\"\r\n + \ }\r\n ]\r\n },\"ip\":null\r\n },\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-cact.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:31.3480844Z\",\"lastModified\":\"2021-01-21T00:45:35.7856992Z\"\r\n \ }\r\n}" headers: cache-control: @@ -438,7 +438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:48 GMT + - Thu, 21 Jan 2021 00:45:36 GMT expires: - '-1' odata-version: @@ -479,7 +479,7 @@ interactions: - -g -a -n --identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -499,7 +499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:49 GMT + - Thu, 21 Jan 2021 00:45:36 GMT expires: - '-1' odata-version: @@ -517,7 +517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -538,7 +538,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -548,17 +548,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:23:50 GMT + - Thu, 21 Jan 2021 00:45:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 pragma: - no-cache server: @@ -568,7 +568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -587,17 +587,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4269a02d-d986-45a1-b3b5-4f1681b6fb67\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"aa421bb6-4164-42de-b2c9-02ef25de104e\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/4269a02d-d986-45a1-b3b5-4f1681b6fb67?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -605,7 +605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:52 GMT + - Thu, 21 Jan 2021 00:45:40 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml index d06236fcf69..734f5636ef2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_delete.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e1616c8a-7b1d-4bff-be1c-488a61261923\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"de83b2f7-8dd3-474b-ad35-8c446ef02799\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:39 GMT + - Thu, 21 Jan 2021 00:45:06 GMT expires: - '-1' odata-version: @@ -74,7 +74,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e1616c8a-7b1d-4bff-be1c-488a61261923\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"de83b2f7-8dd3-474b-ad35-8c446ef02799\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:41 GMT + - Thu, 21 Jan 2021 00:45:08 GMT expires: - '-1' odata-version: @@ -144,7 +144,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -162,11 +162,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.5768345Z\",\"lastModified\":\"2021-01-13T01:23:44.5768345Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:10.8293939Z\",\"lastModified\":\"2021-01-21T00:45:10.8293939Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -174,11 +174,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:44 GMT + - Thu, 21 Jan 2021 00:45:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -210,17 +210,4283 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fc3a3abe-795c-41de-b511-fb4227288072\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"32467ce3-4fe1-4be3-bf55-918e6752421c\"\r\n + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fc3a3abe-795c-41de-b511-fb4227288072?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:18 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:22 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:24 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:26 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:29 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:31 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:33 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:35 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:38 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:40 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:45 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:47 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:49 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:51 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:54 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:56 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:58 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:19 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:21 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:28 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:30 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:32 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:34 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:41 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:59 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:19 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:21 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:28 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:30 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:32 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:35 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:41 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:51 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:02 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:04 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:06 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:11 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:13 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2537cd08-43c1-426f-945f-957d8121ebd4\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -228,7 +4494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:48 GMT + - Thu, 21 Jan 2021 00:48:15 GMT expires: - '-1' odata-version: @@ -264,7 +4530,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -279,7 +4545,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.6080924Z\",\"lastModified\":\"2021-01-13T01:23:47.9229724Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:10.8293939Z\",\"lastModified\":\"2021-01-21T00:48:14.8094073Z\"\r\n \ }\r\n}" headers: cache-control: @@ -289,7 +4555,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:48 GMT + - Thu, 21 Jan 2021 00:48:16 GMT expires: - '-1' odata-version: @@ -324,14 +4590,17 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South + India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:06.9882776Z\",\"lastModified\":\"2021-01-21T00:45:14.6389378Z\"\r\n + \ }\r\n },{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South India\",\"tags\":{\r\n \"foo\":\"bar\"\r\n },\"properties\":{\r\n \ \"description\":\"test streaming description\",\"scaleUnits\":8,\"availabilitySetName\":null,\"cdnEnabled\":true,\"cdnProvider\":\"StandardVerizon\",\"cdnProfile\":\"testProfile\",\"maxCacheAge\":11,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":{\r\n @@ -342,10 +4611,7 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:44.6080924Z\",\"lastModified\":\"2021-01-13T01:23:47.9229724Z\"\r\n - \ }\r\n },{\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South - India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:39.3376271Z\",\"lastModified\":\"2021-01-13T01:23:43.0975212Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:10.8293939Z\",\"lastModified\":\"2021-01-21T00:48:14.8094073Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -355,7 +4621,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:50 GMT + - Thu, 21 Jan 2021 00:48:18 GMT expires: - '-1' odata-version: @@ -392,7 +4658,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -402,17 +4668,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:23:51 GMT + - Thu, 21 Jan 2021 00:48:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 pragma: - no-cache server: @@ -422,7 +4688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -441,17 +4707,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6e431e70-1641-46d1-8919-3804a3daaf7e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"32467ce3-4fe1-4be3-bf55-918e6752421c\"\r\n + string: "{\r\n \"name\":\"93030d59-0872-4842-9ca2-219b651d5162\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9157bd85-5816-4e80-848d-fbf045525142\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -459,7 +4725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:54 GMT + - Thu, 21 Jan 2021 00:48:23 GMT expires: - '-1' odata-version: @@ -494,17 +4760,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6e431e70-1641-46d1-8919-3804a3daaf7e\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"93030d59-0872-4842-9ca2-219b651d5162\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/6e431e70-1641-46d1-8919-3804a3daaf7e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -512,7 +4778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:57 GMT + - Thu, 21 Jan 2021 00:48:25 GMT expires: - '-1' odata-version: @@ -547,7 +4813,7 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -556,7 +4822,7 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"South India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:39.3376271Z\",\"lastModified\":\"2021-01-13T01:23:43.0975212Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-inso.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:06.9882776Z\",\"lastModified\":\"2021-01-21T00:45:14.6389378Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -566,7 +4832,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:59 GMT + - Thu, 21 Jan 2021 00:48:26 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml index 9bdb73d7201..cfe4993626b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_list.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"96608620-dc6f-4aea-a892-421812dfc878\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7f5b467f-c8f1-40ad-942a-8d3e24612747\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:46 GMT + - Thu, 21 Jan 2021 00:45:03 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1193' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"96608620-dc6f-4aea-a892-421812dfc878\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7f5b467f-c8f1-40ad-942a-8d3e24612747\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:46 GMT + - Thu, 21 Jan 2021 00:45:03 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,11 +145,11 @@ interactions: US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8385084Z\",\"lastModified\":\"2021-01-13T01:23:48.8385084Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:05.6976994Z\",\"lastModified\":\"2021-01-21T00:45:05.6976994Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -157,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:49 GMT + - Thu, 21 Jan 2021 00:45:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -192,17 +192,70 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"20d0e6e3-f8ea-4ed8-b53a-2c56739027fb\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"a8c66788-8808-40cd-a21d-5093e72d578a\"\r\n + string: "{\r\n \"name\":\"c2f12533-67c5-437b-8a3d-8ed27e6b52b6\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"959a4302-6e3f-4b63-93ae-e439bb015e3b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/20d0e6e3-f8ea-4ed8-b53a-2c56739027fb?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:07 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"c2f12533-67c5-437b-8a3d-8ed27e6b52b6\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"959a4302-6e3f-4b63-93ae-e439bb015e3b\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -210,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:51 GMT + - Thu, 21 Jan 2021 00:45:10 GMT expires: - '-1' odata-version: @@ -245,14 +298,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8697478Z\",\"lastModified\":\"2021-01-13T01:23:50.8566748Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:05.7289192Z\",\"lastModified\":\"2021-01-21T00:45:09.4225087Z\"\r\n \ }\r\n}" headers: cache-control: @@ -262,7 +315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:51 GMT + - Thu, 21 Jan 2021 00:45:10 GMT expires: - '-1' odata-version: @@ -297,19 +350,19 @@ interactions: - -g -a User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:48.8697478Z\",\"lastModified\":\"2021-01-13T01:23:50.8566748Z\"\r\n - \ }\r\n },{\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"default\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/default\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":0,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":null,\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:23:47.5061932Z\",\"lastModified\":\"2021-01-13T01:23:49.4950492Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:03.7082145Z\",\"lastModified\":\"2021-01-21T00:45:07.3505925Z\"\r\n + \ }\r\n },{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"West + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":14,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-uswe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:05.7289192Z\",\"lastModified\":\"2021-01-21T00:45:09.4225087Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -319,7 +372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:52 GMT + - Thu, 21 Jan 2021 00:45:11 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml index 2f8944ae2b0..cd5809bac5e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_scale.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"1b792ab6-0c52-4d8e-b2e1-9c3291a5f5e4\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"bab5b7c2-1d0b-4273-a04f-336628523a54\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:03 GMT + - Thu, 21 Jan 2021 00:45:08 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"1b792ab6-0c52-4d8e-b2e1-9c3291a5f5e4\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"bab5b7c2-1d0b-4273-a04f-336628523a54\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:04 GMT + - Thu, 21 Jan 2021 00:45:10 GMT expires: - '-1' odata-version: @@ -144,7 +144,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -162,11 +162,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8641172Z\",\"lastModified\":\"2021-01-13T01:24:07.8641172Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:13.9438784Z\",\"lastModified\":\"2021-01-21T00:45:13.9438784Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -174,11 +174,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:08 GMT + - Thu, 21 Jan 2021 00:45:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -210,17 +210,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"d93c964d-687e-4b49-bd03-d975237068b0\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + string: "{\r\n \"name\":\"221b5f8f-07ed-4462-927a-9a52278cddfb\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"47cee60f-d284-4b85-9278-2e46c2c88dd6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -228,7 +228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:10 GMT + - Thu, 21 Jan 2021 00:45:18 GMT expires: - '-1' odata-version: @@ -264,17 +264,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"d93c964d-687e-4b49-bd03-d975237068b0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + string: "{\r\n \"name\":\"221b5f8f-07ed-4462-927a-9a52278cddfb\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"47cee60f-d284-4b85-9278-2e46c2c88dd6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/d93c964d-687e-4b49-bd03-d975237068b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:13 GMT + - Thu, 21 Jan 2021 00:45:20 GMT expires: - '-1' odata-version: @@ -318,7 +318,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -333,7 +333,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8953475Z\",\"lastModified\":\"2021-01-13T01:24:11.3913646Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:13.9751121Z\",\"lastModified\":\"2021-01-21T00:45:19.6971333Z\"\r\n \ }\r\n}" headers: cache-control: @@ -343,7 +343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:13 GMT + - Thu, 21 Jan 2021 00:45:21 GMT expires: - '-1' odata-version: @@ -382,7 +382,7 @@ interactions: - -g -a -n --scale-unit User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -396,7 +396,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:24:15 GMT + - Thu, 21 Jan 2021 00:45:23 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -444,7 +444,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:07.8953475Z\",\"lastModified\":\"2021-01-13T01:24:16.5655552Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-inwe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:13.9751121Z\",\"lastModified\":\"2021-01-21T00:45:23.7495369Z\"\r\n \ }\r\n}" headers: cache-control: @@ -454,7 +454,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:17 GMT + - Thu, 21 Jan 2021 00:45:25 GMT expires: - '-1' odata-version: @@ -491,7 +491,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -501,17 +501,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:24:19 GMT + - Thu, 21 Jan 2021 00:45:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 pragma: - no-cache server: @@ -540,17 +540,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + string: "{\r\n \"name\":\"c080ac63-d72d-4c45-8334-e897f7bd3720\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"47cee60f-d284-4b85-9278-2e46c2c88dd6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -558,7 +558,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:23 GMT + - Thu, 21 Jan 2021 00:45:30 GMT expires: - '-1' odata-version: @@ -593,17 +593,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"1475557d-ba17-4639-814a-3125ae998fe4\"\r\n + string: "{\r\n \"name\":\"c080ac63-d72d-4c45-8334-e897f7bd3720\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"47cee60f-d284-4b85-9278-2e46c2c88dd6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -611,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:25 GMT + - Thu, 21 Jan 2021 00:45:32 GMT expires: - '-1' odata-version: @@ -646,17 +646,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"c080ac63-d72d-4c45-8334-e897f7bd3720\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/fefdc4c2-d615-4cf4-aeeb-2618d8bc8d5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -664,7 +664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:27 GMT + - Thu, 21 Jan 2021 00:45:35 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml index 051c0c28426..e68fafaba30 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_show.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"f5f376b7-36a4-419b-9c3d-9e4acb5b8525\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"d66bd575-e3bd-42a4-9796-c531bad4bb6f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:25 GMT + - Thu, 21 Jan 2021 00:45:49 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -75,7 +75,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -83,7 +83,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"f5f376b7-36a4-419b-9c3d-9e4acb5b8525\",\"storageAccounts\":[\r\n + Southeast\",\"properties\":{\r\n \"mediaServiceId\":\"d66bd575-e3bd-42a4-9796-c531bad4bb6f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -96,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:26 GMT + - Thu, 21 Jan 2021 00:45:50 GMT expires: - '-1' odata-version: @@ -146,7 +146,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -164,11 +164,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.4861473Z\",\"lastModified\":\"2021-01-13T01:24:28.4861473Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:52.5722404Z\",\"lastModified\":\"2021-01-21T00:45:52.5722404Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -176,11 +176,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:28 GMT + - Thu, 21 Jan 2021 00:45:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -192,7 +192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -212,17 +212,71 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"164348c1-1da4-4877-b322-c7daf2078ca7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c8098ecc-a34d-4cb3-ba74-83f5a2cf1e0f\"\r\n + string: "{\r\n \"name\":\"bd80d884-c7bc-40f1-a70e-dc28893bb803\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ff52d888-f6ee-4c58-9b49-697772889ea2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/164348c1-1da4-4877-b322-c7daf2078ca7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --cdn-provider --cdn-profile --description --max-cache-age --scale-units + --tags --client-access-policy --cross-domain-policy + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"bd80d884-c7bc-40f1-a70e-dc28893bb803\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ff52d888-f6ee-4c58-9b49-697772889ea2\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -230,7 +284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:32 GMT + - Thu, 21 Jan 2021 00:45:58 GMT expires: - '-1' odata-version: @@ -266,7 +320,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -281,7 +335,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.5017588Z\",\"lastModified\":\"2021-01-13T01:24:32.0567693Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:52.5878695Z\",\"lastModified\":\"2021-01-21T00:45:56.4680781Z\"\r\n \ }\r\n}" headers: cache-control: @@ -291,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:32 GMT + - Thu, 21 Jan 2021 00:45:58 GMT expires: - '-1' odata-version: @@ -326,7 +380,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -343,7 +397,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:28.5017588Z\",\"lastModified\":\"2021-01-13T01:24:32.0567693Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-ausoe.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:52.5878695Z\",\"lastModified\":\"2021-01-21T00:45:56.4680781Z\"\r\n \ }\r\n}" headers: cache-control: @@ -353,7 +407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:33 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' odata-version: @@ -388,7 +442,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -406,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:24:33 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' pragma: @@ -437,7 +491,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -447,17 +501,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:24:35 GMT + - Thu, 21 Jan 2021 00:46:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 pragma: - no-cache server: @@ -486,17 +540,70 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"f8db2ac0-c137-424b-8b10-115eab5e8d4d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ff52d888-f6ee-4c58-9b49-697772889ea2\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:06 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c8098ecc-a34d-4cb3-ba74-83f5a2cf1e0f\"\r\n + string: "{\r\n \"name\":\"f8db2ac0-c137-424b-8b10-115eab5e8d4d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ff52d888-f6ee-4c58-9b49-697772889ea2\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -504,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:38 GMT + - Thu, 21 Jan 2021 00:46:08 GMT expires: - '-1' odata-version: @@ -539,17 +646,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"f8db2ac0-c137-424b-8b10-115eab5e8d4d\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/abfa9f2a-e48a-4f5a-9c59-26fc7aa6f504?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -557,7 +664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:41 GMT + - Thu, 21 Jan 2021 00:46:11 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml index 29ec1503f03..ce55c5d51cb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"79ea6138-3a31-4ccc-8baf-9810cce03244\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"fbd09f87-7b49-450c-923b-fa710bd617e4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:24 GMT + - Thu, 21 Jan 2021 00:45:51 GMT expires: - '-1' odata-version: @@ -74,7 +74,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"79ea6138-3a31-4ccc-8baf-9810cce03244\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"fbd09f87-7b49-450c-923b-fa710bd617e4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:26 GMT + - Thu, 21 Jan 2021 00:45:53 GMT expires: - '-1' odata-version: @@ -135,7 +135,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -146,11 +146,11 @@ interactions: India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:29.0516333Z\",\"lastModified\":\"2021-01-13T01:24:29.0516333Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:56.7840788Z\",\"lastModified\":\"2021-01-21T00:45:56.7840788Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/27011bff-9713-4e3f-8ad6-8d2d8329e655?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -158,11 +158,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:29 GMT + - Thu, 21 Jan 2021 00:45:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/27011bff-9713-4e3f-8ad6-8d2d8329e655?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -174,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -193,17 +193,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/27011bff-9713-4e3f-8ad6-8d2d8329e655?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"7cfee4d2-9767-43ed-8c0c-0826451f1ff6\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"27011bff-9713-4e3f-8ad6-8d2d8329e655\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/7cfee4d2-9767-43ed-8c0c-0826451f1ff6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/27011bff-9713-4e3f-8ad6-8d2d8329e655?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:33 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' odata-version: @@ -246,14 +246,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:29.0672811Z\",\"lastModified\":\"2021-01-13T01:24:32.5889472Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:56.7997168Z\",\"lastModified\":\"2021-01-21T00:46:00.7819497Z\"\r\n \ }\r\n}" headers: cache-control: @@ -263,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:33 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' odata-version: @@ -300,7 +300,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -310,17 +310,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:24:35 GMT + - Thu, 21 Jan 2021 00:46:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 pragma: - no-cache server: @@ -349,4363 +349,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:39 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:41 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:43 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:46 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:48 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:50 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:52 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:55 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:57 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:24:59 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:02 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:04 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:06 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:08 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:11 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:13 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:15 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:17 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:20 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:22 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:24 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:27 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:29 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:31 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:33 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:36 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:38 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:40 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:43 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:45 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:47 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:49 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:52 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:54 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:56 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:25:59 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:01 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:03 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:05 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:08 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:10 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:12 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:15 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:18 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:20 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:22 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:25 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:27 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:29 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:31 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:34 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:36 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:38 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:40 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:43 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:45 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:47 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:50 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:52 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:54 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:56 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:26:59 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:01 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:03 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:06 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:08 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:10 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:12 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:15 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:17 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:19 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:21 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:24 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:26 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:28 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:31 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:33 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:35 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:37 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:40 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:42 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Wed, 13 Jan 2021 01:27:44 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams streaming-endpoint start - Connection: - - keep-alive - ParameterSetName: - - -g -a -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4713,7 +367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:47 GMT + - Thu, 21 Jan 2021 00:46:07 GMT expires: - '-1' odata-version: @@ -4748,17 +402,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4766,7 +420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:49 GMT + - Thu, 21 Jan 2021 00:46:10 GMT expires: - '-1' odata-version: @@ -4801,17 +455,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4819,7 +473,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:51 GMT + - Thu, 21 Jan 2021 00:46:12 GMT expires: - '-1' odata-version: @@ -4854,17 +508,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4872,7 +526,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:53 GMT + - Thu, 21 Jan 2021 00:46:14 GMT expires: - '-1' odata-version: @@ -4907,17 +561,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4925,7 +579,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:56 GMT + - Thu, 21 Jan 2021 00:46:16 GMT expires: - '-1' odata-version: @@ -4960,17 +614,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4978,7 +632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:58 GMT + - Thu, 21 Jan 2021 00:46:19 GMT expires: - '-1' odata-version: @@ -5013,17 +667,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5031,7 +685,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:00 GMT + - Thu, 21 Jan 2021 00:46:21 GMT expires: - '-1' odata-version: @@ -5066,17 +720,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5084,7 +738,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:02 GMT + - Thu, 21 Jan 2021 00:46:23 GMT expires: - '-1' odata-version: @@ -5119,17 +773,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5137,7 +791,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:05 GMT + - Thu, 21 Jan 2021 00:46:25 GMT expires: - '-1' odata-version: @@ -5172,17 +826,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5190,7 +844,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:07 GMT + - Thu, 21 Jan 2021 00:46:28 GMT expires: - '-1' odata-version: @@ -5225,17 +879,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5243,7 +897,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:09 GMT + - Thu, 21 Jan 2021 00:46:30 GMT expires: - '-1' odata-version: @@ -5278,17 +932,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5296,7 +950,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:12 GMT + - Thu, 21 Jan 2021 00:46:32 GMT expires: - '-1' odata-version: @@ -5331,17 +985,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5349,7 +1003,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:14 GMT + - Thu, 21 Jan 2021 00:46:35 GMT expires: - '-1' odata-version: @@ -5384,17 +1038,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5402,7 +1056,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:16 GMT + - Thu, 21 Jan 2021 00:46:37 GMT expires: - '-1' odata-version: @@ -5437,17 +1091,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5455,7 +1109,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:19 GMT + - Thu, 21 Jan 2021 00:46:39 GMT expires: - '-1' odata-version: @@ -5490,17 +1144,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5508,7 +1162,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:21 GMT + - Thu, 21 Jan 2021 00:46:41 GMT expires: - '-1' odata-version: @@ -5543,17 +1197,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5561,7 +1215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:23 GMT + - Thu, 21 Jan 2021 00:46:44 GMT expires: - '-1' odata-version: @@ -5596,17 +1250,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5614,7 +1268,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:25 GMT + - Thu, 21 Jan 2021 00:46:46 GMT expires: - '-1' odata-version: @@ -5649,17 +1303,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5667,7 +1321,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:28 GMT + - Thu, 21 Jan 2021 00:46:48 GMT expires: - '-1' odata-version: @@ -5702,17 +1356,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5720,7 +1374,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:31 GMT + - Thu, 21 Jan 2021 00:46:51 GMT expires: - '-1' odata-version: @@ -5755,17 +1409,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5773,7 +1427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:33 GMT + - Thu, 21 Jan 2021 00:46:53 GMT expires: - '-1' odata-version: @@ -5808,17 +1462,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5826,7 +1480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:35 GMT + - Thu, 21 Jan 2021 00:46:55 GMT expires: - '-1' odata-version: @@ -5861,17 +1515,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5879,7 +1533,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:38 GMT + - Thu, 21 Jan 2021 00:46:57 GMT expires: - '-1' odata-version: @@ -5914,17 +1568,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5932,7 +1586,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:40 GMT + - Thu, 21 Jan 2021 00:47:00 GMT expires: - '-1' odata-version: @@ -5967,17 +1621,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5985,7 +1639,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:42 GMT + - Thu, 21 Jan 2021 00:47:02 GMT expires: - '-1' odata-version: @@ -6020,17 +1674,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6038,7 +1692,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:45 GMT + - Thu, 21 Jan 2021 00:47:04 GMT expires: - '-1' odata-version: @@ -6073,17 +1727,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6091,7 +1745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:47 GMT + - Thu, 21 Jan 2021 00:47:07 GMT expires: - '-1' odata-version: @@ -6126,17 +1780,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6144,7 +1798,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:49 GMT + - Thu, 21 Jan 2021 00:47:09 GMT expires: - '-1' odata-version: @@ -6179,17 +1833,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6197,7 +1851,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:51 GMT + - Thu, 21 Jan 2021 00:47:11 GMT expires: - '-1' odata-version: @@ -6232,17 +1886,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6250,7 +1904,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:54 GMT + - Thu, 21 Jan 2021 00:47:13 GMT expires: - '-1' odata-version: @@ -6285,17 +1939,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6303,7 +1957,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:56 GMT + - Thu, 21 Jan 2021 00:47:16 GMT expires: - '-1' odata-version: @@ -6338,17 +1992,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6356,7 +2010,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:58 GMT + - Thu, 21 Jan 2021 00:47:18 GMT expires: - '-1' odata-version: @@ -6391,17 +2045,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6409,7 +2063,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:01 GMT + - Thu, 21 Jan 2021 00:47:20 GMT expires: - '-1' odata-version: @@ -6444,17 +2098,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6462,7 +2116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:03 GMT + - Thu, 21 Jan 2021 00:47:23 GMT expires: - '-1' odata-version: @@ -6497,17 +2151,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6515,7 +2169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:05 GMT + - Thu, 21 Jan 2021 00:47:25 GMT expires: - '-1' odata-version: @@ -6550,17 +2204,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6568,7 +2222,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:07 GMT + - Thu, 21 Jan 2021 00:47:27 GMT expires: - '-1' odata-version: @@ -6603,17 +2257,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6621,7 +2275,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:10 GMT + - Thu, 21 Jan 2021 00:47:29 GMT expires: - '-1' odata-version: @@ -6656,17 +2310,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6674,7 +2328,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:12 GMT + - Thu, 21 Jan 2021 00:47:32 GMT expires: - '-1' odata-version: @@ -6709,17 +2363,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6727,7 +2381,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:14 GMT + - Thu, 21 Jan 2021 00:47:34 GMT expires: - '-1' odata-version: @@ -6762,17 +2416,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6780,7 +2434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:17 GMT + - Thu, 21 Jan 2021 00:47:36 GMT expires: - '-1' odata-version: @@ -6815,17 +2469,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6833,7 +2487,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:19 GMT + - Thu, 21 Jan 2021 00:47:38 GMT expires: - '-1' odata-version: @@ -6868,17 +2522,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6886,7 +2540,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:22 GMT + - Thu, 21 Jan 2021 00:47:41 GMT expires: - '-1' odata-version: @@ -6921,17 +2575,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6939,7 +2593,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:25 GMT + - Thu, 21 Jan 2021 00:47:43 GMT expires: - '-1' odata-version: @@ -6974,17 +2628,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6992,7 +2646,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:27 GMT + - Thu, 21 Jan 2021 00:47:45 GMT expires: - '-1' odata-version: @@ -7027,17 +2681,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7045,7 +2699,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:29 GMT + - Thu, 21 Jan 2021 00:47:48 GMT expires: - '-1' odata-version: @@ -7080,17 +2734,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7098,7 +2752,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:31 GMT + - Thu, 21 Jan 2021 00:47:50 GMT expires: - '-1' odata-version: @@ -7133,17 +2787,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7151,7 +2805,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:34 GMT + - Thu, 21 Jan 2021 00:47:52 GMT expires: - '-1' odata-version: @@ -7186,17 +2840,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7204,7 +2858,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:36 GMT + - Thu, 21 Jan 2021 00:47:54 GMT expires: - '-1' odata-version: @@ -7239,17 +2893,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7257,7 +2911,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:38 GMT + - Thu, 21 Jan 2021 00:47:57 GMT expires: - '-1' odata-version: @@ -7292,17 +2946,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7310,7 +2964,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:41 GMT + - Thu, 21 Jan 2021 00:48:00 GMT expires: - '-1' odata-version: @@ -7345,17 +2999,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7363,7 +3017,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:43 GMT + - Thu, 21 Jan 2021 00:48:02 GMT expires: - '-1' odata-version: @@ -7398,17 +3052,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7416,7 +3070,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:45 GMT + - Thu, 21 Jan 2021 00:48:05 GMT expires: - '-1' odata-version: @@ -7451,17 +3105,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7469,7 +3123,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:47 GMT + - Thu, 21 Jan 2021 00:48:07 GMT expires: - '-1' odata-version: @@ -7504,17 +3158,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7522,7 +3176,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:50 GMT + - Thu, 21 Jan 2021 00:48:09 GMT expires: - '-1' odata-version: @@ -7557,17 +3211,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7575,7 +3229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:52 GMT + - Thu, 21 Jan 2021 00:48:11 GMT expires: - '-1' odata-version: @@ -7610,17 +3264,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7628,7 +3282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:54 GMT + - Thu, 21 Jan 2021 00:48:14 GMT expires: - '-1' odata-version: @@ -7663,17 +3317,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7681,7 +3335,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:56 GMT + - Thu, 21 Jan 2021 00:48:16 GMT expires: - '-1' odata-version: @@ -7716,17 +3370,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7734,7 +3388,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:59 GMT + - Thu, 21 Jan 2021 00:48:18 GMT expires: - '-1' odata-version: @@ -7769,17 +3423,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7787,7 +3441,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:01 GMT + - Thu, 21 Jan 2021 00:48:21 GMT expires: - '-1' odata-version: @@ -7822,17 +3476,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7840,7 +3494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:03 GMT + - Thu, 21 Jan 2021 00:48:23 GMT expires: - '-1' odata-version: @@ -7875,17 +3529,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7893,7 +3547,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:06 GMT + - Thu, 21 Jan 2021 00:48:25 GMT expires: - '-1' odata-version: @@ -7928,17 +3582,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7946,7 +3600,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:08 GMT + - Thu, 21 Jan 2021 00:48:27 GMT expires: - '-1' odata-version: @@ -7981,17 +3635,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7999,7 +3653,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:10 GMT + - Thu, 21 Jan 2021 00:48:30 GMT expires: - '-1' odata-version: @@ -8034,17 +3688,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8052,7 +3706,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:12 GMT + - Thu, 21 Jan 2021 00:48:32 GMT expires: - '-1' odata-version: @@ -8087,17 +3741,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8105,7 +3759,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:15 GMT + - Thu, 21 Jan 2021 00:48:34 GMT expires: - '-1' odata-version: @@ -8140,17 +3794,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8158,7 +3812,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:17 GMT + - Thu, 21 Jan 2021 00:48:37 GMT expires: - '-1' odata-version: @@ -8193,17 +3847,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8211,7 +3865,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:19 GMT + - Thu, 21 Jan 2021 00:48:39 GMT expires: - '-1' odata-version: @@ -8246,17 +3900,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8264,7 +3918,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:22 GMT + - Thu, 21 Jan 2021 00:48:41 GMT expires: - '-1' odata-version: @@ -8299,17 +3953,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8317,7 +3971,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:24 GMT + - Thu, 21 Jan 2021 00:48:43 GMT expires: - '-1' odata-version: @@ -8352,17 +4006,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8370,7 +4024,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:26 GMT + - Thu, 21 Jan 2021 00:48:46 GMT expires: - '-1' odata-version: @@ -8405,17 +4059,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8423,7 +4077,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:28 GMT + - Thu, 21 Jan 2021 00:48:48 GMT expires: - '-1' odata-version: @@ -8458,17 +4112,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8476,7 +4130,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:31 GMT + - Thu, 21 Jan 2021 00:48:50 GMT expires: - '-1' odata-version: @@ -8511,17 +4165,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8529,7 +4183,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:33 GMT + - Thu, 21 Jan 2021 00:48:53 GMT expires: - '-1' odata-version: @@ -8564,17 +4218,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8582,7 +4236,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:35 GMT + - Thu, 21 Jan 2021 00:48:55 GMT expires: - '-1' odata-version: @@ -8617,17 +4271,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8635,7 +4289,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:37 GMT + - Thu, 21 Jan 2021 00:48:57 GMT expires: - '-1' odata-version: @@ -8670,17 +4324,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8688,7 +4342,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:41 GMT + - Thu, 21 Jan 2021 00:48:59 GMT expires: - '-1' odata-version: @@ -8723,17 +4377,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8741,7 +4395,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:43 GMT + - Thu, 21 Jan 2021 00:49:02 GMT expires: - '-1' odata-version: @@ -8776,17 +4430,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8794,7 +4448,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:46 GMT + - Thu, 21 Jan 2021 00:49:04 GMT expires: - '-1' odata-version: @@ -8829,17 +4483,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8847,7 +4501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:48 GMT + - Thu, 21 Jan 2021 00:49:06 GMT expires: - '-1' odata-version: @@ -8882,17 +4536,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8900,7 +4554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:50 GMT + - Thu, 21 Jan 2021 00:49:08 GMT expires: - '-1' odata-version: @@ -8935,17 +4589,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8953,7 +4607,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:52 GMT + - Thu, 21 Jan 2021 00:49:11 GMT expires: - '-1' odata-version: @@ -8988,17 +4642,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9006,7 +4660,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:55 GMT + - Thu, 21 Jan 2021 00:49:13 GMT expires: - '-1' odata-version: @@ -9041,17 +4695,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9059,7 +4713,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:57 GMT + - Thu, 21 Jan 2021 00:49:15 GMT expires: - '-1' odata-version: @@ -9094,17 +4748,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9112,7 +4766,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:59 GMT + - Thu, 21 Jan 2021 00:49:18 GMT expires: - '-1' odata-version: @@ -9147,17 +4801,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9165,7 +4819,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:01 GMT + - Thu, 21 Jan 2021 00:49:20 GMT expires: - '-1' odata-version: @@ -9200,17 +4854,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9218,7 +4872,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:04 GMT + - Thu, 21 Jan 2021 00:49:22 GMT expires: - '-1' odata-version: @@ -9253,17 +4907,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9271,7 +4925,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:06 GMT + - Thu, 21 Jan 2021 00:49:24 GMT expires: - '-1' odata-version: @@ -9306,17 +4960,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9324,7 +4978,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:08 GMT + - Thu, 21 Jan 2021 00:49:27 GMT expires: - '-1' odata-version: @@ -9359,17 +5013,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9377,7 +5031,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:11 GMT + - Thu, 21 Jan 2021 00:49:29 GMT expires: - '-1' odata-version: @@ -9412,17 +5066,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9430,7 +5084,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:13 GMT + - Thu, 21 Jan 2021 00:49:31 GMT expires: - '-1' odata-version: @@ -9465,17 +5119,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9483,7 +5137,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:15 GMT + - Thu, 21 Jan 2021 00:49:33 GMT expires: - '-1' odata-version: @@ -9518,17 +5172,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9536,7 +5190,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:17 GMT + - Thu, 21 Jan 2021 00:49:36 GMT expires: - '-1' odata-version: @@ -9571,17 +5225,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9589,7 +5243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:20 GMT + - Thu, 21 Jan 2021 00:49:38 GMT expires: - '-1' odata-version: @@ -9624,17 +5278,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9642,7 +5296,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:22 GMT + - Thu, 21 Jan 2021 00:49:40 GMT expires: - '-1' odata-version: @@ -9677,17 +5331,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9695,7 +5349,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:24 GMT + - Thu, 21 Jan 2021 00:49:43 GMT expires: - '-1' odata-version: @@ -9730,17 +5384,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9748,7 +5402,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:27 GMT + - Thu, 21 Jan 2021 00:49:45 GMT expires: - '-1' odata-version: @@ -9783,17 +5437,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9801,7 +5455,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:29 GMT + - Thu, 21 Jan 2021 00:49:47 GMT expires: - '-1' odata-version: @@ -9836,17 +5490,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9854,7 +5508,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:32 GMT + - Thu, 21 Jan 2021 00:49:49 GMT expires: - '-1' odata-version: @@ -9889,17 +5543,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9907,7 +5561,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:34 GMT + - Thu, 21 Jan 2021 00:49:52 GMT expires: - '-1' odata-version: @@ -9942,17 +5596,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9960,7 +5614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:37 GMT + - Thu, 21 Jan 2021 00:49:54 GMT expires: - '-1' odata-version: @@ -9995,17 +5649,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10013,7 +5667,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:39 GMT + - Thu, 21 Jan 2021 00:49:56 GMT expires: - '-1' odata-version: @@ -10048,17 +5702,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10066,7 +5720,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:41 GMT + - Thu, 21 Jan 2021 00:49:59 GMT expires: - '-1' odata-version: @@ -10101,17 +5755,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10119,7 +5773,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:44 GMT + - Thu, 21 Jan 2021 00:50:01 GMT expires: - '-1' odata-version: @@ -10154,17 +5808,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10172,7 +5826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:46 GMT + - Thu, 21 Jan 2021 00:50:03 GMT expires: - '-1' odata-version: @@ -10207,17 +5861,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10225,7 +5879,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:48 GMT + - Thu, 21 Jan 2021 00:50:05 GMT expires: - '-1' odata-version: @@ -10260,17 +5914,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10278,7 +5932,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:50 GMT + - Thu, 21 Jan 2021 00:50:08 GMT expires: - '-1' odata-version: @@ -10313,17 +5967,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10331,7 +5985,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:53 GMT + - Thu, 21 Jan 2021 00:50:10 GMT expires: - '-1' odata-version: @@ -10366,17 +6020,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10384,7 +6038,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:55 GMT + - Thu, 21 Jan 2021 00:50:12 GMT expires: - '-1' odata-version: @@ -10419,17 +6073,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10437,7 +6091,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:57 GMT + - Thu, 21 Jan 2021 00:50:15 GMT expires: - '-1' odata-version: @@ -10472,17 +6126,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10490,7 +6144,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:00 GMT + - Thu, 21 Jan 2021 00:50:17 GMT expires: - '-1' odata-version: @@ -10525,17 +6179,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10543,7 +6197,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:02 GMT + - Thu, 21 Jan 2021 00:50:19 GMT expires: - '-1' odata-version: @@ -10578,17 +6232,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10596,7 +6250,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:04 GMT + - Thu, 21 Jan 2021 00:50:23 GMT expires: - '-1' odata-version: @@ -10631,17 +6285,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10649,7 +6303,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:06 GMT + - Thu, 21 Jan 2021 00:50:25 GMT expires: - '-1' odata-version: @@ -10684,17 +6338,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10702,7 +6356,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:09 GMT + - Thu, 21 Jan 2021 00:50:27 GMT expires: - '-1' odata-version: @@ -10737,17 +6391,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10755,7 +6409,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:11 GMT + - Thu, 21 Jan 2021 00:50:29 GMT expires: - '-1' odata-version: @@ -10790,17 +6444,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10808,7 +6462,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:13 GMT + - Thu, 21 Jan 2021 00:50:32 GMT expires: - '-1' odata-version: @@ -10843,17 +6497,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10861,7 +6515,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:15 GMT + - Thu, 21 Jan 2021 00:50:34 GMT expires: - '-1' odata-version: @@ -10896,17 +6550,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10914,7 +6568,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:18 GMT + - Thu, 21 Jan 2021 00:50:36 GMT expires: - '-1' odata-version: @@ -10949,17 +6603,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10967,7 +6621,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:20 GMT + - Thu, 21 Jan 2021 00:50:38 GMT expires: - '-1' odata-version: @@ -11002,17 +6656,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11020,7 +6674,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:22 GMT + - Thu, 21 Jan 2021 00:50:42 GMT expires: - '-1' odata-version: @@ -11055,17 +6709,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11073,7 +6727,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:24 GMT + - Thu, 21 Jan 2021 00:50:44 GMT expires: - '-1' odata-version: @@ -11108,17 +6762,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11126,7 +6780,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:27 GMT + - Thu, 21 Jan 2021 00:50:46 GMT expires: - '-1' odata-version: @@ -11161,17 +6815,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11179,7 +6833,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:29 GMT + - Thu, 21 Jan 2021 00:50:49 GMT expires: - '-1' odata-version: @@ -11214,17 +6868,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11232,7 +6886,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:31 GMT + - Thu, 21 Jan 2021 00:50:51 GMT expires: - '-1' odata-version: @@ -11267,17 +6921,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11285,7 +6939,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:34 GMT + - Thu, 21 Jan 2021 00:50:53 GMT expires: - '-1' odata-version: @@ -11320,17 +6974,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11338,7 +6992,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:36 GMT + - Thu, 21 Jan 2021 00:50:55 GMT expires: - '-1' odata-version: @@ -11373,17 +7027,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11391,7 +7045,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:38 GMT + - Thu, 21 Jan 2021 00:50:58 GMT expires: - '-1' odata-version: @@ -11426,17 +7080,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11444,7 +7098,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:40 GMT + - Thu, 21 Jan 2021 00:51:00 GMT expires: - '-1' odata-version: @@ -11479,17 +7133,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11497,7 +7151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:43 GMT + - Thu, 21 Jan 2021 00:51:02 GMT expires: - '-1' odata-version: @@ -11532,17 +7186,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11550,7 +7204,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:45 GMT + - Thu, 21 Jan 2021 00:51:04 GMT expires: - '-1' odata-version: @@ -11585,17 +7239,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11603,7 +7257,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:47 GMT + - Thu, 21 Jan 2021 00:51:07 GMT expires: - '-1' odata-version: @@ -11638,17 +7292,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11656,7 +7310,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:49 GMT + - Thu, 21 Jan 2021 00:51:09 GMT expires: - '-1' odata-version: @@ -11691,17 +7345,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11709,7 +7363,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:52 GMT + - Thu, 21 Jan 2021 00:51:11 GMT expires: - '-1' odata-version: @@ -11744,17 +7398,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11762,7 +7416,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:54 GMT + - Thu, 21 Jan 2021 00:51:14 GMT expires: - '-1' odata-version: @@ -11797,17 +7451,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11815,7 +7469,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:56 GMT + - Thu, 21 Jan 2021 00:51:16 GMT expires: - '-1' odata-version: @@ -11850,17 +7504,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11868,7 +7522,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:59 GMT + - Thu, 21 Jan 2021 00:51:18 GMT expires: - '-1' odata-version: @@ -11903,17 +7557,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11921,7 +7575,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:01 GMT + - Thu, 21 Jan 2021 00:51:20 GMT expires: - '-1' odata-version: @@ -11956,17 +7610,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11974,7 +7628,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:03 GMT + - Thu, 21 Jan 2021 00:51:23 GMT expires: - '-1' odata-version: @@ -12009,17 +7663,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12027,7 +7681,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:05 GMT + - Thu, 21 Jan 2021 00:51:25 GMT expires: - '-1' odata-version: @@ -12062,17 +7716,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12080,7 +7734,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:08 GMT + - Thu, 21 Jan 2021 00:51:27 GMT expires: - '-1' odata-version: @@ -12115,17 +7769,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12133,7 +7787,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:10 GMT + - Thu, 21 Jan 2021 00:51:30 GMT expires: - '-1' odata-version: @@ -12168,17 +7822,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12186,7 +7840,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:12 GMT + - Thu, 21 Jan 2021 00:51:32 GMT expires: - '-1' odata-version: @@ -12221,17 +7875,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12239,7 +7893,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:14 GMT + - Thu, 21 Jan 2021 00:51:34 GMT expires: - '-1' odata-version: @@ -12274,17 +7928,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12292,7 +7946,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:17 GMT + - Thu, 21 Jan 2021 00:51:36 GMT expires: - '-1' odata-version: @@ -12327,17 +7981,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12345,7 +7999,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:19 GMT + - Thu, 21 Jan 2021 00:51:39 GMT expires: - '-1' odata-version: @@ -12380,17 +8034,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12398,7 +8052,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:21 GMT + - Thu, 21 Jan 2021 00:51:41 GMT expires: - '-1' odata-version: @@ -12433,17 +8087,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12451,7 +8105,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:24 GMT + - Thu, 21 Jan 2021 00:51:43 GMT expires: - '-1' odata-version: @@ -12486,17 +8140,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12504,7 +8158,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:26 GMT + - Thu, 21 Jan 2021 00:51:45 GMT expires: - '-1' odata-version: @@ -12539,17 +8193,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12557,7 +8211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:28 GMT + - Thu, 21 Jan 2021 00:51:48 GMT expires: - '-1' odata-version: @@ -12592,17 +8246,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12610,7 +8264,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:30 GMT + - Thu, 21 Jan 2021 00:51:50 GMT expires: - '-1' odata-version: @@ -12645,17 +8299,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12663,7 +8317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:33 GMT + - Thu, 21 Jan 2021 00:51:52 GMT expires: - '-1' odata-version: @@ -12698,17 +8352,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12716,7 +8370,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:35 GMT + - Thu, 21 Jan 2021 00:51:55 GMT expires: - '-1' odata-version: @@ -12751,17 +8405,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12769,7 +8423,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:37 GMT + - Thu, 21 Jan 2021 00:51:57 GMT expires: - '-1' odata-version: @@ -12804,17 +8458,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12822,7 +8476,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:40 GMT + - Thu, 21 Jan 2021 00:51:59 GMT expires: - '-1' odata-version: @@ -12857,17 +8511,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12875,7 +8529,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:42 GMT + - Thu, 21 Jan 2021 00:52:01 GMT expires: - '-1' odata-version: @@ -12910,17 +8564,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12928,7 +8582,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:44 GMT + - Thu, 21 Jan 2021 00:52:04 GMT expires: - '-1' odata-version: @@ -12963,17 +8617,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12981,7 +8635,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:47 GMT + - Thu, 21 Jan 2021 00:52:06 GMT expires: - '-1' odata-version: @@ -13016,17 +8670,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13034,7 +8688,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:50 GMT + - Thu, 21 Jan 2021 00:52:08 GMT expires: - '-1' odata-version: @@ -13069,17 +8723,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13087,7 +8741,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:52 GMT + - Thu, 21 Jan 2021 00:52:11 GMT expires: - '-1' odata-version: @@ -13122,17 +8776,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13140,7 +8794,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:54 GMT + - Thu, 21 Jan 2021 00:52:13 GMT expires: - '-1' odata-version: @@ -13175,17 +8829,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13193,7 +8847,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:57 GMT + - Thu, 21 Jan 2021 00:52:15 GMT expires: - '-1' odata-version: @@ -13228,17 +8882,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13246,7 +8900,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:59 GMT + - Thu, 21 Jan 2021 00:52:17 GMT expires: - '-1' odata-version: @@ -13281,17 +8935,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13299,7 +8953,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:01 GMT + - Thu, 21 Jan 2021 00:52:20 GMT expires: - '-1' odata-version: @@ -13334,17 +8988,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13352,7 +9006,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:03 GMT + - Thu, 21 Jan 2021 00:52:22 GMT expires: - '-1' odata-version: @@ -13387,17 +9041,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13405,7 +9059,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:07 GMT + - Thu, 21 Jan 2021 00:52:24 GMT expires: - '-1' odata-version: @@ -13440,17 +9094,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13458,7 +9112,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:09 GMT + - Thu, 21 Jan 2021 00:52:26 GMT expires: - '-1' odata-version: @@ -13493,17 +9147,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13511,7 +9165,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:12 GMT + - Thu, 21 Jan 2021 00:52:29 GMT expires: - '-1' odata-version: @@ -13546,17 +9200,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13564,7 +9218,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:14 GMT + - Thu, 21 Jan 2021 00:52:31 GMT expires: - '-1' odata-version: @@ -13599,17 +9253,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13617,7 +9271,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:16 GMT + - Thu, 21 Jan 2021 00:52:33 GMT expires: - '-1' odata-version: @@ -13652,17 +9306,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13670,7 +9324,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:18 GMT + - Thu, 21 Jan 2021 00:52:36 GMT expires: - '-1' odata-version: @@ -13705,17 +9359,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13723,7 +9377,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:21 GMT + - Thu, 21 Jan 2021 00:52:38 GMT expires: - '-1' odata-version: @@ -13758,17 +9412,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13776,7 +9430,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:23 GMT + - Thu, 21 Jan 2021 00:52:40 GMT expires: - '-1' odata-version: @@ -13811,17 +9465,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13829,7 +9483,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:25 GMT + - Thu, 21 Jan 2021 00:52:42 GMT expires: - '-1' odata-version: @@ -13864,17 +9518,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13882,7 +9536,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:28 GMT + - Thu, 21 Jan 2021 00:52:45 GMT expires: - '-1' odata-version: @@ -13917,17 +9571,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13935,7 +9589,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:30 GMT + - Thu, 21 Jan 2021 00:52:47 GMT expires: - '-1' odata-version: @@ -13970,17 +9624,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13988,7 +9642,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:32 GMT + - Thu, 21 Jan 2021 00:52:49 GMT expires: - '-1' odata-version: @@ -14023,17 +9677,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14041,7 +9695,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:35 GMT + - Thu, 21 Jan 2021 00:52:51 GMT expires: - '-1' odata-version: @@ -14076,17 +9730,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14094,7 +9748,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:37 GMT + - Thu, 21 Jan 2021 00:52:54 GMT expires: - '-1' odata-version: @@ -14129,17 +9783,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14147,7 +9801,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:39 GMT + - Thu, 21 Jan 2021 00:52:56 GMT expires: - '-1' odata-version: @@ -14182,17 +9836,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14200,7 +9854,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:41 GMT + - Thu, 21 Jan 2021 00:52:58 GMT expires: - '-1' odata-version: @@ -14235,17 +9889,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14253,7 +9907,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:44 GMT + - Thu, 21 Jan 2021 00:53:01 GMT expires: - '-1' odata-version: @@ -14288,17 +9942,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14306,7 +9960,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:46 GMT + - Thu, 21 Jan 2021 00:53:03 GMT expires: - '-1' odata-version: @@ -14341,17 +9995,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14359,7 +10013,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:48 GMT + - Thu, 21 Jan 2021 00:53:05 GMT expires: - '-1' odata-version: @@ -14394,17 +10048,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14412,7 +10066,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:51 GMT + - Thu, 21 Jan 2021 00:53:07 GMT expires: - '-1' odata-version: @@ -14447,17 +10101,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14465,7 +10119,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:53 GMT + - Thu, 21 Jan 2021 00:53:10 GMT expires: - '-1' odata-version: @@ -14500,17 +10154,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14518,7 +10172,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:55 GMT + - Thu, 21 Jan 2021 00:53:12 GMT expires: - '-1' odata-version: @@ -14553,17 +10207,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14571,7 +10225,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:57 GMT + - Thu, 21 Jan 2021 00:53:14 GMT expires: - '-1' odata-version: @@ -14606,17 +10260,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14624,7 +10278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:00 GMT + - Thu, 21 Jan 2021 00:53:17 GMT expires: - '-1' odata-version: @@ -14659,17 +10313,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14677,7 +10331,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:02 GMT + - Thu, 21 Jan 2021 00:53:19 GMT expires: - '-1' odata-version: @@ -14712,17 +10366,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14730,7 +10384,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:04 GMT + - Thu, 21 Jan 2021 00:53:21 GMT expires: - '-1' odata-version: @@ -14765,17 +10419,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14783,7 +10437,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:07 GMT + - Thu, 21 Jan 2021 00:53:23 GMT expires: - '-1' odata-version: @@ -14818,17 +10472,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14836,7 +10490,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:09 GMT + - Thu, 21 Jan 2021 00:53:26 GMT expires: - '-1' odata-version: @@ -14871,17 +10525,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14889,7 +10543,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:11 GMT + - Thu, 21 Jan 2021 00:53:28 GMT expires: - '-1' odata-version: @@ -14924,17 +10578,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14942,7 +10596,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:13 GMT + - Thu, 21 Jan 2021 00:53:31 GMT expires: - '-1' odata-version: @@ -14977,17 +10631,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14995,7 +10649,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:16 GMT + - Thu, 21 Jan 2021 00:53:34 GMT expires: - '-1' odata-version: @@ -15030,17 +10684,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15048,7 +10702,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:18 GMT + - Thu, 21 Jan 2021 00:53:36 GMT expires: - '-1' odata-version: @@ -15083,17 +10737,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15101,7 +10755,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:20 GMT + - Thu, 21 Jan 2021 00:53:38 GMT expires: - '-1' odata-version: @@ -15136,17 +10790,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15154,7 +10808,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:23 GMT + - Thu, 21 Jan 2021 00:53:40 GMT expires: - '-1' odata-version: @@ -15189,17 +10843,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15207,7 +10861,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:25 GMT + - Thu, 21 Jan 2021 00:53:43 GMT expires: - '-1' odata-version: @@ -15242,17 +10896,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15260,7 +10914,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:27 GMT + - Thu, 21 Jan 2021 00:53:45 GMT expires: - '-1' odata-version: @@ -15295,17 +10949,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15313,7 +10967,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:29 GMT + - Thu, 21 Jan 2021 00:53:47 GMT expires: - '-1' odata-version: @@ -15348,17 +11002,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15366,7 +11020,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:32 GMT + - Thu, 21 Jan 2021 00:53:50 GMT expires: - '-1' odata-version: @@ -15401,17 +11055,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15419,7 +11073,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:34 GMT + - Thu, 21 Jan 2021 00:53:52 GMT expires: - '-1' odata-version: @@ -15454,17 +11108,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15472,7 +11126,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:36 GMT + - Thu, 21 Jan 2021 00:53:54 GMT expires: - '-1' odata-version: @@ -15507,17 +11161,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15525,7 +11179,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:39 GMT + - Thu, 21 Jan 2021 00:53:56 GMT expires: - '-1' odata-version: @@ -15560,17 +11214,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15578,7 +11232,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:41 GMT + - Thu, 21 Jan 2021 00:53:59 GMT expires: - '-1' odata-version: @@ -15613,17 +11267,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15631,7 +11285,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:43 GMT + - Thu, 21 Jan 2021 00:54:01 GMT expires: - '-1' odata-version: @@ -15666,17 +11320,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15684,7 +11338,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:46 GMT + - Thu, 21 Jan 2021 00:54:03 GMT expires: - '-1' odata-version: @@ -15719,17 +11373,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15737,7 +11391,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:48 GMT + - Thu, 21 Jan 2021 00:54:05 GMT expires: - '-1' odata-version: @@ -15772,17 +11426,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15790,7 +11444,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:50 GMT + - Thu, 21 Jan 2021 00:54:08 GMT expires: - '-1' odata-version: @@ -15825,17 +11479,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15843,7 +11497,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:53 GMT + - Thu, 21 Jan 2021 00:54:10 GMT expires: - '-1' odata-version: @@ -15878,17 +11532,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15896,7 +11550,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:55 GMT + - Thu, 21 Jan 2021 00:54:12 GMT expires: - '-1' odata-version: @@ -15931,17 +11585,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15949,7 +11603,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:57 GMT + - Thu, 21 Jan 2021 00:54:15 GMT expires: - '-1' odata-version: @@ -15984,17 +11638,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16002,7 +11656,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:59 GMT + - Thu, 21 Jan 2021 00:54:17 GMT expires: - '-1' odata-version: @@ -16037,17 +11691,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16055,7 +11709,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:02 GMT + - Thu, 21 Jan 2021 00:54:19 GMT expires: - '-1' odata-version: @@ -16090,17 +11744,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16108,7 +11762,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:04 GMT + - Thu, 21 Jan 2021 00:54:21 GMT expires: - '-1' odata-version: @@ -16143,17 +11797,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16161,7 +11815,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:06 GMT + - Thu, 21 Jan 2021 00:54:24 GMT expires: - '-1' odata-version: @@ -16196,17 +11850,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16214,7 +11868,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:08 GMT + - Thu, 21 Jan 2021 00:54:26 GMT expires: - '-1' odata-version: @@ -16249,17 +11903,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16267,7 +11921,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:11 GMT + - Thu, 21 Jan 2021 00:54:28 GMT expires: - '-1' odata-version: @@ -16302,17 +11956,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16320,7 +11974,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:13 GMT + - Thu, 21 Jan 2021 00:54:31 GMT expires: - '-1' odata-version: @@ -16355,17 +12009,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16373,7 +12027,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:15 GMT + - Thu, 21 Jan 2021 00:54:33 GMT expires: - '-1' odata-version: @@ -16408,17 +12062,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16426,7 +12080,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:18 GMT + - Thu, 21 Jan 2021 00:54:35 GMT expires: - '-1' odata-version: @@ -16461,17 +12115,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16479,7 +12133,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:20 GMT + - Thu, 21 Jan 2021 00:54:39 GMT expires: - '-1' odata-version: @@ -16514,17 +12168,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16532,7 +12186,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:22 GMT + - Thu, 21 Jan 2021 00:54:41 GMT expires: - '-1' odata-version: @@ -16567,17 +12221,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16585,7 +12239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:24 GMT + - Thu, 21 Jan 2021 00:54:43 GMT expires: - '-1' odata-version: @@ -16620,17 +12274,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16638,7 +12292,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:27 GMT + - Thu, 21 Jan 2021 00:54:45 GMT expires: - '-1' odata-version: @@ -16673,17 +12327,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16691,7 +12345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:30 GMT + - Thu, 21 Jan 2021 00:54:48 GMT expires: - '-1' odata-version: @@ -16726,17 +12380,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16744,7 +12398,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:32 GMT + - Thu, 21 Jan 2021 00:54:50 GMT expires: - '-1' odata-version: @@ -16779,17 +12433,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16797,7 +12451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:35 GMT + - Thu, 21 Jan 2021 00:54:52 GMT expires: - '-1' odata-version: @@ -16832,17 +12486,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16850,7 +12504,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:37 GMT + - Thu, 21 Jan 2021 00:54:55 GMT expires: - '-1' odata-version: @@ -16885,17 +12539,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16903,7 +12557,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:39 GMT + - Thu, 21 Jan 2021 00:54:57 GMT expires: - '-1' odata-version: @@ -16938,17 +12592,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16956,7 +12610,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:41 GMT + - Thu, 21 Jan 2021 00:54:59 GMT expires: - '-1' odata-version: @@ -16991,17 +12645,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17009,7 +12663,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:44 GMT + - Thu, 21 Jan 2021 00:55:01 GMT expires: - '-1' odata-version: @@ -17044,17 +12698,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17062,7 +12716,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:46 GMT + - Thu, 21 Jan 2021 00:55:04 GMT expires: - '-1' odata-version: @@ -17097,17 +12751,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17115,7 +12769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:48 GMT + - Thu, 21 Jan 2021 00:55:06 GMT expires: - '-1' odata-version: @@ -17150,17 +12804,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17168,7 +12822,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:51 GMT + - Thu, 21 Jan 2021 00:55:08 GMT expires: - '-1' odata-version: @@ -17203,17 +12857,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17221,7 +12875,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:53 GMT + - Thu, 21 Jan 2021 00:55:10 GMT expires: - '-1' odata-version: @@ -17256,17 +12910,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17274,7 +12928,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:55 GMT + - Thu, 21 Jan 2021 00:55:13 GMT expires: - '-1' odata-version: @@ -17309,17 +12963,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17327,7 +12981,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:57 GMT + - Thu, 21 Jan 2021 00:55:15 GMT expires: - '-1' odata-version: @@ -17362,17 +13016,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17380,7 +13034,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:00 GMT + - Thu, 21 Jan 2021 00:55:17 GMT expires: - '-1' odata-version: @@ -17415,17 +13069,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17433,7 +13087,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:02 GMT + - Thu, 21 Jan 2021 00:55:20 GMT expires: - '-1' odata-version: @@ -17468,17 +13122,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17486,7 +13140,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:04 GMT + - Thu, 21 Jan 2021 00:55:22 GMT expires: - '-1' odata-version: @@ -17521,17 +13175,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17539,7 +13193,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:07 GMT + - Thu, 21 Jan 2021 00:55:24 GMT expires: - '-1' odata-version: @@ -17574,17 +13228,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17592,7 +13246,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:09 GMT + - Thu, 21 Jan 2021 00:55:26 GMT expires: - '-1' odata-version: @@ -17627,17 +13281,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17645,7 +13299,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:11 GMT + - Thu, 21 Jan 2021 00:55:29 GMT expires: - '-1' odata-version: @@ -17680,17 +13334,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17698,7 +13352,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:13 GMT + - Thu, 21 Jan 2021 00:55:31 GMT expires: - '-1' odata-version: @@ -17733,17 +13387,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17751,7 +13405,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:16 GMT + - Thu, 21 Jan 2021 00:55:33 GMT expires: - '-1' odata-version: @@ -17786,17 +13440,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17804,7 +13458,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:18 GMT + - Thu, 21 Jan 2021 00:55:36 GMT expires: - '-1' odata-version: @@ -17839,17 +13493,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17857,7 +13511,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:20 GMT + - Thu, 21 Jan 2021 00:55:38 GMT expires: - '-1' odata-version: @@ -17892,17 +13546,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17910,7 +13564,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:23 GMT + - Thu, 21 Jan 2021 00:55:40 GMT expires: - '-1' odata-version: @@ -17945,17 +13599,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17963,7 +13617,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:25 GMT + - Thu, 21 Jan 2021 00:55:42 GMT expires: - '-1' odata-version: @@ -17998,17 +13652,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18016,7 +13670,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:27 GMT + - Thu, 21 Jan 2021 00:55:45 GMT expires: - '-1' odata-version: @@ -18051,17 +13705,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18069,7 +13723,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:29 GMT + - Thu, 21 Jan 2021 00:55:47 GMT expires: - '-1' odata-version: @@ -18104,17 +13758,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18122,7 +13776,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:32 GMT + - Thu, 21 Jan 2021 00:55:49 GMT expires: - '-1' odata-version: @@ -18157,17 +13811,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18175,7 +13829,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:34 GMT + - Thu, 21 Jan 2021 00:55:51 GMT expires: - '-1' odata-version: @@ -18210,17 +13864,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18228,7 +13882,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:36 GMT + - Thu, 21 Jan 2021 00:55:54 GMT expires: - '-1' odata-version: @@ -18263,17 +13917,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18281,7 +13935,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:38 GMT + - Thu, 21 Jan 2021 00:55:56 GMT expires: - '-1' odata-version: @@ -18316,17 +13970,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18334,7 +13988,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:41 GMT + - Thu, 21 Jan 2021 00:55:58 GMT expires: - '-1' odata-version: @@ -18369,17 +14023,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18387,7 +14041,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:43 GMT + - Thu, 21 Jan 2021 00:56:01 GMT expires: - '-1' odata-version: @@ -18422,17 +14076,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18440,7 +14094,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:45 GMT + - Thu, 21 Jan 2021 00:56:03 GMT expires: - '-1' odata-version: @@ -18475,17 +14129,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18493,7 +14147,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:48 GMT + - Thu, 21 Jan 2021 00:56:05 GMT expires: - '-1' odata-version: @@ -18528,17 +14182,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18546,7 +14200,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:50 GMT + - Thu, 21 Jan 2021 00:56:08 GMT expires: - '-1' odata-version: @@ -18581,17 +14235,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18599,7 +14253,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:52 GMT + - Thu, 21 Jan 2021 00:56:10 GMT expires: - '-1' odata-version: @@ -18634,17 +14288,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18652,7 +14306,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:54 GMT + - Thu, 21 Jan 2021 00:56:12 GMT expires: - '-1' odata-version: @@ -18687,17 +14341,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18705,7 +14359,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:57 GMT + - Thu, 21 Jan 2021 00:56:14 GMT expires: - '-1' odata-version: @@ -18740,17 +14394,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18758,7 +14412,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:59 GMT + - Thu, 21 Jan 2021 00:56:17 GMT expires: - '-1' odata-version: @@ -18793,17 +14447,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18811,7 +14465,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:01 GMT + - Thu, 21 Jan 2021 00:56:20 GMT expires: - '-1' odata-version: @@ -18846,17 +14500,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18864,7 +14518,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:03 GMT + - Thu, 21 Jan 2021 00:56:22 GMT expires: - '-1' odata-version: @@ -18899,17 +14553,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18917,7 +14571,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:06 GMT + - Thu, 21 Jan 2021 00:56:24 GMT expires: - '-1' odata-version: @@ -18952,17 +14606,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18970,7 +14624,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:08 GMT + - Thu, 21 Jan 2021 00:56:27 GMT expires: - '-1' odata-version: @@ -19005,17 +14659,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19023,7 +14677,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:10 GMT + - Thu, 21 Jan 2021 00:56:29 GMT expires: - '-1' odata-version: @@ -19058,17 +14712,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19076,7 +14730,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:13 GMT + - Thu, 21 Jan 2021 00:56:31 GMT expires: - '-1' odata-version: @@ -19111,17 +14765,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19129,7 +14783,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:15 GMT + - Thu, 21 Jan 2021 00:56:34 GMT expires: - '-1' odata-version: @@ -19164,17 +14818,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19182,7 +14836,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:17 GMT + - Thu, 21 Jan 2021 00:56:36 GMT expires: - '-1' odata-version: @@ -19217,17 +14871,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19235,7 +14889,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:19 GMT + - Thu, 21 Jan 2021 00:56:38 GMT expires: - '-1' odata-version: @@ -19270,17 +14924,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19288,7 +14942,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:22 GMT + - Thu, 21 Jan 2021 00:56:40 GMT expires: - '-1' odata-version: @@ -19323,17 +14977,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19341,7 +14995,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:24 GMT + - Thu, 21 Jan 2021 00:56:43 GMT expires: - '-1' odata-version: @@ -19376,17 +15030,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19394,7 +15048,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:26 GMT + - Thu, 21 Jan 2021 00:56:45 GMT expires: - '-1' odata-version: @@ -19429,17 +15083,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19447,7 +15101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:29 GMT + - Thu, 21 Jan 2021 00:56:47 GMT expires: - '-1' odata-version: @@ -19482,17 +15136,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19500,7 +15154,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:31 GMT + - Thu, 21 Jan 2021 00:56:49 GMT expires: - '-1' odata-version: @@ -19535,17 +15189,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19553,7 +15207,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:33 GMT + - Thu, 21 Jan 2021 00:56:52 GMT expires: - '-1' odata-version: @@ -19588,17 +15242,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19606,7 +15260,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:35 GMT + - Thu, 21 Jan 2021 00:56:54 GMT expires: - '-1' odata-version: @@ -19641,17 +15295,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19659,7 +15313,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:39 GMT + - Thu, 21 Jan 2021 00:56:56 GMT expires: - '-1' odata-version: @@ -19694,17 +15348,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19712,7 +15366,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:41 GMT + - Thu, 21 Jan 2021 00:56:59 GMT expires: - '-1' odata-version: @@ -19747,17 +15401,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19765,7 +15419,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:43 GMT + - Thu, 21 Jan 2021 00:57:01 GMT expires: - '-1' odata-version: @@ -19800,17 +15454,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19818,7 +15472,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:46 GMT + - Thu, 21 Jan 2021 00:57:03 GMT expires: - '-1' odata-version: @@ -19853,17 +15507,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19871,7 +15525,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:48 GMT + - Thu, 21 Jan 2021 00:57:05 GMT expires: - '-1' odata-version: @@ -19906,17 +15560,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19924,7 +15578,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:51 GMT + - Thu, 21 Jan 2021 00:57:08 GMT expires: - '-1' odata-version: @@ -19959,17 +15613,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19977,7 +15631,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:54 GMT + - Thu, 21 Jan 2021 00:57:10 GMT expires: - '-1' odata-version: @@ -20012,17 +15666,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20030,7 +15684,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:56 GMT + - Thu, 21 Jan 2021 00:57:12 GMT expires: - '-1' odata-version: @@ -20065,17 +15719,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20083,7 +15737,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:58 GMT + - Thu, 21 Jan 2021 00:57:15 GMT expires: - '-1' odata-version: @@ -20118,17 +15772,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20136,7 +15790,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:00 GMT + - Thu, 21 Jan 2021 00:57:17 GMT expires: - '-1' odata-version: @@ -20171,17 +15825,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20189,7 +15843,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:03 GMT + - Thu, 21 Jan 2021 00:57:19 GMT expires: - '-1' odata-version: @@ -20224,17 +15878,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20242,7 +15896,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:05 GMT + - Thu, 21 Jan 2021 00:57:21 GMT expires: - '-1' odata-version: @@ -20277,17 +15931,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20295,7 +15949,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:07 GMT + - Thu, 21 Jan 2021 00:57:24 GMT expires: - '-1' odata-version: @@ -20330,17 +15984,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20348,7 +16002,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:10 GMT + - Thu, 21 Jan 2021 00:57:26 GMT expires: - '-1' odata-version: @@ -20383,17 +16037,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20401,7 +16055,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:12 GMT + - Thu, 21 Jan 2021 00:57:28 GMT expires: - '-1' odata-version: @@ -20436,17 +16090,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20454,7 +16108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:14 GMT + - Thu, 21 Jan 2021 00:57:31 GMT expires: - '-1' odata-version: @@ -20489,17 +16143,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20507,7 +16161,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:16 GMT + - Thu, 21 Jan 2021 00:57:33 GMT expires: - '-1' odata-version: @@ -20542,17 +16196,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20560,7 +16214,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:19 GMT + - Thu, 21 Jan 2021 00:57:35 GMT expires: - '-1' odata-version: @@ -20595,17 +16249,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20613,7 +16267,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:21 GMT + - Thu, 21 Jan 2021 00:57:37 GMT expires: - '-1' odata-version: @@ -20648,17 +16302,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20666,7 +16320,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:23 GMT + - Thu, 21 Jan 2021 00:57:40 GMT expires: - '-1' odata-version: @@ -20701,17 +16355,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20719,7 +16373,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:25 GMT + - Thu, 21 Jan 2021 00:57:42 GMT expires: - '-1' odata-version: @@ -20754,17 +16408,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20772,7 +16426,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:28 GMT + - Thu, 21 Jan 2021 00:57:44 GMT expires: - '-1' odata-version: @@ -20807,17 +16461,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20825,7 +16479,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:30 GMT + - Thu, 21 Jan 2021 00:57:47 GMT expires: - '-1' odata-version: @@ -20860,17 +16514,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20878,7 +16532,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:32 GMT + - Thu, 21 Jan 2021 00:57:49 GMT expires: - '-1' odata-version: @@ -20913,17 +16567,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20931,7 +16585,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:35 GMT + - Thu, 21 Jan 2021 00:57:51 GMT expires: - '-1' odata-version: @@ -20966,17 +16620,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20984,7 +16638,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:37 GMT + - Thu, 21 Jan 2021 00:57:53 GMT expires: - '-1' odata-version: @@ -21019,17 +16673,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21037,7 +16691,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:39 GMT + - Thu, 21 Jan 2021 00:57:56 GMT expires: - '-1' odata-version: @@ -21072,17 +16726,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21090,7 +16744,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:41 GMT + - Thu, 21 Jan 2021 00:57:58 GMT expires: - '-1' odata-version: @@ -21125,17 +16779,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21143,7 +16797,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:44 GMT + - Thu, 21 Jan 2021 00:58:00 GMT expires: - '-1' odata-version: @@ -21178,17 +16832,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21196,7 +16850,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:46 GMT + - Thu, 21 Jan 2021 00:58:02 GMT expires: - '-1' odata-version: @@ -21231,17 +16885,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21249,7 +16903,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:48 GMT + - Thu, 21 Jan 2021 00:58:05 GMT expires: - '-1' odata-version: @@ -21284,17 +16938,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21302,7 +16956,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:50 GMT + - Thu, 21 Jan 2021 00:58:07 GMT expires: - '-1' odata-version: @@ -21337,17 +16991,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21355,7 +17009,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:53 GMT + - Thu, 21 Jan 2021 00:58:09 GMT expires: - '-1' odata-version: @@ -21390,17 +17044,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21408,7 +17062,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:55 GMT + - Thu, 21 Jan 2021 00:58:12 GMT expires: - '-1' odata-version: @@ -21443,17 +17097,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21461,7 +17115,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:57 GMT + - Thu, 21 Jan 2021 00:58:14 GMT expires: - '-1' odata-version: @@ -21496,17 +17150,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21514,7 +17168,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:59 GMT + - Thu, 21 Jan 2021 00:58:16 GMT expires: - '-1' odata-version: @@ -21549,17 +17203,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21567,7 +17221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:02 GMT + - Thu, 21 Jan 2021 00:58:18 GMT expires: - '-1' odata-version: @@ -21602,17 +17256,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21620,7 +17274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:04 GMT + - Thu, 21 Jan 2021 00:58:21 GMT expires: - '-1' odata-version: @@ -21655,17 +17309,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21673,7 +17327,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:06 GMT + - Thu, 21 Jan 2021 00:58:23 GMT expires: - '-1' odata-version: @@ -21708,17 +17362,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21726,7 +17380,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:09 GMT + - Thu, 21 Jan 2021 00:58:25 GMT expires: - '-1' odata-version: @@ -21761,17 +17415,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21779,7 +17433,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:11 GMT + - Thu, 21 Jan 2021 00:58:28 GMT expires: - '-1' odata-version: @@ -21814,17 +17468,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21832,7 +17486,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:13 GMT + - Thu, 21 Jan 2021 00:58:30 GMT expires: - '-1' odata-version: @@ -21867,17 +17521,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21885,7 +17539,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:15 GMT + - Thu, 21 Jan 2021 00:58:32 GMT expires: - '-1' odata-version: @@ -21920,17 +17574,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21938,7 +17592,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:18 GMT + - Thu, 21 Jan 2021 00:58:34 GMT expires: - '-1' odata-version: @@ -21973,17 +17627,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21991,7 +17645,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:20 GMT + - Thu, 21 Jan 2021 00:58:37 GMT expires: - '-1' odata-version: @@ -22026,17 +17680,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22044,7 +17698,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:22 GMT + - Thu, 21 Jan 2021 00:58:39 GMT expires: - '-1' odata-version: @@ -22079,17 +17733,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22097,7 +17751,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:24 GMT + - Thu, 21 Jan 2021 00:58:41 GMT expires: - '-1' odata-version: @@ -22132,17 +17786,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22150,7 +17804,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:27 GMT + - Thu, 21 Jan 2021 00:58:44 GMT expires: - '-1' odata-version: @@ -22185,17 +17839,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22203,7 +17857,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:29 GMT + - Thu, 21 Jan 2021 00:58:46 GMT expires: - '-1' odata-version: @@ -22238,17 +17892,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22256,7 +17910,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:31 GMT + - Thu, 21 Jan 2021 00:58:48 GMT expires: - '-1' odata-version: @@ -22291,17 +17945,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22309,7 +17963,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:34 GMT + - Thu, 21 Jan 2021 00:58:50 GMT expires: - '-1' odata-version: @@ -22344,17 +17998,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22362,7 +18016,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:36 GMT + - Thu, 21 Jan 2021 00:58:54 GMT expires: - '-1' odata-version: @@ -22397,17 +18051,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22415,7 +18069,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:38 GMT + - Thu, 21 Jan 2021 00:58:56 GMT expires: - '-1' odata-version: @@ -22450,17 +18104,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22468,7 +18122,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:40 GMT + - Thu, 21 Jan 2021 00:58:58 GMT expires: - '-1' odata-version: @@ -22503,17 +18157,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22521,7 +18175,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:43 GMT + - Thu, 21 Jan 2021 00:59:01 GMT expires: - '-1' odata-version: @@ -22556,17 +18210,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22574,7 +18228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:45 GMT + - Thu, 21 Jan 2021 00:59:04 GMT expires: - '-1' odata-version: @@ -22609,17 +18263,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22627,7 +18281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:47 GMT + - Thu, 21 Jan 2021 00:59:06 GMT expires: - '-1' odata-version: @@ -22662,17 +18316,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22680,7 +18334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:50 GMT + - Thu, 21 Jan 2021 00:59:09 GMT expires: - '-1' odata-version: @@ -22715,17 +18369,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22733,7 +18387,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:52 GMT + - Thu, 21 Jan 2021 00:59:11 GMT expires: - '-1' odata-version: @@ -22768,17 +18422,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22786,7 +18440,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:55 GMT + - Thu, 21 Jan 2021 00:59:13 GMT expires: - '-1' odata-version: @@ -22821,17 +18475,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22839,7 +18493,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:57 GMT + - Thu, 21 Jan 2021 00:59:15 GMT expires: - '-1' odata-version: @@ -22874,17 +18528,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22892,7 +18546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:00 GMT + - Thu, 21 Jan 2021 00:59:18 GMT expires: - '-1' odata-version: @@ -22927,17 +18581,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22945,7 +18599,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:02 GMT + - Thu, 21 Jan 2021 00:59:20 GMT expires: - '-1' odata-version: @@ -22980,17 +18634,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22998,7 +18652,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:04 GMT + - Thu, 21 Jan 2021 00:59:22 GMT expires: - '-1' odata-version: @@ -23033,17 +18687,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23051,7 +18705,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:06 GMT + - Thu, 21 Jan 2021 00:59:24 GMT expires: - '-1' odata-version: @@ -23086,17 +18740,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23104,7 +18758,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:09 GMT + - Thu, 21 Jan 2021 00:59:27 GMT expires: - '-1' odata-version: @@ -23139,17 +18793,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23157,7 +18811,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:11 GMT + - Thu, 21 Jan 2021 00:59:29 GMT expires: - '-1' odata-version: @@ -23192,17 +18846,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23210,7 +18864,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:13 GMT + - Thu, 21 Jan 2021 00:59:31 GMT expires: - '-1' odata-version: @@ -23245,17 +18899,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23263,7 +18917,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:15 GMT + - Thu, 21 Jan 2021 00:59:34 GMT expires: - '-1' odata-version: @@ -23298,17 +18952,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23316,7 +18970,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:18 GMT + - Thu, 21 Jan 2021 00:59:36 GMT expires: - '-1' odata-version: @@ -23351,17 +19005,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23369,7 +19023,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:20 GMT + - Thu, 21 Jan 2021 00:59:38 GMT expires: - '-1' odata-version: @@ -23404,17 +19058,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23422,7 +19076,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:22 GMT + - Thu, 21 Jan 2021 00:59:40 GMT expires: - '-1' odata-version: @@ -23457,17 +19111,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23475,7 +19129,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:25 GMT + - Thu, 21 Jan 2021 00:59:43 GMT expires: - '-1' odata-version: @@ -23510,17 +19164,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23528,7 +19182,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:27 GMT + - Thu, 21 Jan 2021 00:59:45 GMT expires: - '-1' odata-version: @@ -23563,17 +19217,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23581,7 +19235,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:29 GMT + - Thu, 21 Jan 2021 00:59:47 GMT expires: - '-1' odata-version: @@ -23616,17 +19270,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23634,7 +19288,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:31 GMT + - Thu, 21 Jan 2021 00:59:50 GMT expires: - '-1' odata-version: @@ -23669,17 +19323,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23687,7 +19341,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:34 GMT + - Thu, 21 Jan 2021 00:59:52 GMT expires: - '-1' odata-version: @@ -23722,17 +19376,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23740,7 +19394,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:36 GMT + - Thu, 21 Jan 2021 00:59:54 GMT expires: - '-1' odata-version: @@ -23775,17 +19429,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23793,7 +19447,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:38 GMT + - Thu, 21 Jan 2021 00:59:56 GMT expires: - '-1' odata-version: @@ -23828,17 +19482,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23846,7 +19500,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:41 GMT + - Thu, 21 Jan 2021 00:59:59 GMT expires: - '-1' odata-version: @@ -23881,17 +19535,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23899,7 +19553,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:43 GMT + - Thu, 21 Jan 2021 01:00:01 GMT expires: - '-1' odata-version: @@ -23934,17 +19588,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23952,7 +19606,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:45 GMT + - Thu, 21 Jan 2021 01:00:03 GMT expires: - '-1' odata-version: @@ -23987,17 +19641,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24005,7 +19659,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:47 GMT + - Thu, 21 Jan 2021 01:00:06 GMT expires: - '-1' odata-version: @@ -24040,17 +19694,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24058,7 +19712,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:50 GMT + - Thu, 21 Jan 2021 01:00:08 GMT expires: - '-1' odata-version: @@ -24093,17 +19747,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24111,7 +19765,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:52 GMT + - Thu, 21 Jan 2021 01:00:10 GMT expires: - '-1' odata-version: @@ -24146,17 +19800,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24164,7 +19818,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:54 GMT + - Thu, 21 Jan 2021 01:00:12 GMT expires: - '-1' odata-version: @@ -24199,17 +19853,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24217,7 +19871,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:57 GMT + - Thu, 21 Jan 2021 01:00:15 GMT expires: - '-1' odata-version: @@ -24252,17 +19906,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6e19d20-6264-494d-ac9b-68c34986b62e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"74cd2f97-099f-4090-a67b-2332c2588f91\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/b6e19d20-6264-494d-ac9b-68c34986b62e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24270,7 +19924,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:59 GMT + - Thu, 21 Jan 2021 01:00:17 GMT expires: - '-1' odata-version: @@ -24305,7 +19959,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -24314,7 +19968,7 @@ interactions: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central India\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":4,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:29.0672811Z\",\"lastModified\":\"2021-01-13T01:41:58.4501192Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-inct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-21T00:45:56.7997168Z\",\"lastModified\":\"2021-01-21T01:00:16.9655848Z\"\r\n \ }\r\n}" headers: cache-control: @@ -24324,7 +19978,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:01 GMT + - Thu, 21 Jan 2021 01:00:19 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml index e31b4ef95e8..6b5324b3462 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_start_async.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"e2ab35b9-b946-43b5-9bb6-c23390a07dd7\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"2a3f0404-4c62-46c5-bb89-544988df61f6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:21 GMT + - Thu, 21 Jan 2021 00:46:03 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"e2ab35b9-b946-43b5-9bb6-c23390a07dd7\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"2a3f0404-4c62-46c5-bb89-544988df61f6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:21 GMT + - Thu, 21 Jan 2021 00:46:04 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,11 +145,11 @@ interactions: US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:23.6883364Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:05.2695123Z\",\"lastModified\":\"2021-01-21T00:46:05.2695123Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/400b14eb-3861-4d48-b62f-41aecec4a721?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -157,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:23 GMT + - Thu, 21 Jan 2021 00:46:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/400b14eb-3861-4d48-b62f-41aecec4a721?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -192,17 +192,17 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/400b14eb-3861-4d48-b62f-41aecec4a721?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"67c3449b-9892-4ec1-9afb-54edae871232\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"8c6be7cc-3b3c-4e38-a33c-1dcd23b55e63\"\r\n + string: "{\r\n \"name\":\"400b14eb-3861-4d48-b62f-41aecec4a721\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9b4d9466-5177-404f-8fbf-56925e9b8d25\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/67c3449b-9892-4ec1-9afb-54edae871232?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/400b14eb-3861-4d48-b62f-41aecec4a721?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:25 GMT + - Thu, 21 Jan 2021 00:46:07 GMT expires: - '-1' odata-version: @@ -245,14 +245,14 @@ interactions: - -g -a -n --scale-units User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:25.1600356Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:05.2851091Z\",\"lastModified\":\"2021-01-21T00:46:07.2763831Z\"\r\n \ }\r\n}" headers: cache-control: @@ -262,7 +262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:26 GMT + - Thu, 21 Jan 2021 00:46:07 GMT expires: - '-1' odata-version: @@ -299,7 +299,7 @@ interactions: - -g -a -n --no-wait User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -309,17 +309,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/9e14e8aa-be2b-460b-98a3-af7884150e26?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/35c44f86-f864-47e7-8399-83ec9a1ed775?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:24:27 GMT + - Thu, 21 Jan 2021 00:46:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/9e14e8aa-be2b-460b-98a3-af7884150e26?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/35c44f86-f864-47e7-8399-83ec9a1ed775?api-version=2020-05-01 pragma: - no-cache server: @@ -348,7 +348,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -357,7 +357,7 @@ interactions: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"Central US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":11,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Starting\",\"created\":\"2021-01-13T01:24:23.6883364Z\",\"lastModified\":\"2021-01-13T01:24:27.6606954Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usct.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Starting\",\"created\":\"2021-01-21T00:46:05.2851091Z\",\"lastModified\":\"2021-01-21T00:46:09.4605164Z\"\r\n \ }\r\n}" headers: cache-control: @@ -367,7 +367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:27 GMT + - Thu, 21 Jan 2021 00:46:09 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml index 9cf13fd3ea6..017dad53671 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"552fba7e-fcf4-4ebb-9d66-53ffc9d59fbd\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b4796a99-cf06-457b-9edc-ea3152fc71b2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:23 GMT + - Thu, 21 Jan 2021 00:48:49 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"552fba7e-fcf4-4ebb-9d66-53ffc9d59fbd\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b4796a99-cf06-457b-9edc-ea3152fc71b2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:24 GMT + - Thu, 21 Jan 2021 00:48:50 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,11 +145,11 @@ interactions: US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:26.0051289Z\",\"lastModified\":\"2021-01-13T01:24:26.0051289Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:48:52.8939868Z\",\"lastModified\":\"2021-01-21T00:48:52.8939868Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -157,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:25 GMT + - Thu, 21 Jan 2021 00:48:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -173,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -192,17 +192,494 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48:58 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:02 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:04 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:06 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:08 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:49:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -210,7 +687,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:28 GMT + - Thu, 21 Jan 2021 00:49:14 GMT expires: - '-1' odata-version: @@ -245,17 +722,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -263,7 +740,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:30 GMT + - Thu, 21 Jan 2021 00:49:16 GMT expires: - '-1' odata-version: @@ -298,17 +775,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -316,7 +793,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:33 GMT + - Thu, 21 Jan 2021 00:49:19 GMT expires: - '-1' odata-version: @@ -351,17 +828,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -369,7 +846,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:35 GMT + - Thu, 21 Jan 2021 00:49:21 GMT expires: - '-1' odata-version: @@ -404,17 +881,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -422,7 +899,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:37 GMT + - Thu, 21 Jan 2021 00:49:23 GMT expires: - '-1' odata-version: @@ -457,17 +934,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -475,7 +952,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:39 GMT + - Thu, 21 Jan 2021 00:49:25 GMT expires: - '-1' odata-version: @@ -510,17 +987,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -528,7 +1005,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:41 GMT + - Thu, 21 Jan 2021 00:49:27 GMT expires: - '-1' odata-version: @@ -563,17 +1040,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -581,7 +1058,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:43 GMT + - Thu, 21 Jan 2021 00:49:29 GMT expires: - '-1' odata-version: @@ -616,17 +1093,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -634,7 +1111,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:46 GMT + - Thu, 21 Jan 2021 00:49:31 GMT expires: - '-1' odata-version: @@ -669,17 +1146,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -687,7 +1164,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:48 GMT + - Thu, 21 Jan 2021 00:49:33 GMT expires: - '-1' odata-version: @@ -722,17 +1199,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -740,7 +1217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:50 GMT + - Thu, 21 Jan 2021 00:49:35 GMT expires: - '-1' odata-version: @@ -775,17 +1252,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -793,7 +1270,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:52 GMT + - Thu, 21 Jan 2021 00:49:37 GMT expires: - '-1' odata-version: @@ -828,17 +1305,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -846,7 +1323,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:54 GMT + - Thu, 21 Jan 2021 00:49:39 GMT expires: - '-1' odata-version: @@ -881,17 +1358,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -899,7 +1376,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:56 GMT + - Thu, 21 Jan 2021 00:49:41 GMT expires: - '-1' odata-version: @@ -934,17 +1411,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -952,7 +1429,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:58 GMT + - Thu, 21 Jan 2021 00:49:43 GMT expires: - '-1' odata-version: @@ -987,17 +1464,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1005,7 +1482,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:00 GMT + - Thu, 21 Jan 2021 00:49:46 GMT expires: - '-1' odata-version: @@ -1040,17 +1517,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1058,7 +1535,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:03 GMT + - Thu, 21 Jan 2021 00:49:48 GMT expires: - '-1' odata-version: @@ -1093,17 +1570,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1111,7 +1588,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:05 GMT + - Thu, 21 Jan 2021 00:49:50 GMT expires: - '-1' odata-version: @@ -1146,17 +1623,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1164,7 +1641,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:07 GMT + - Thu, 21 Jan 2021 00:49:52 GMT expires: - '-1' odata-version: @@ -1199,17 +1676,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1217,7 +1694,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:09 GMT + - Thu, 21 Jan 2021 00:49:54 GMT expires: - '-1' odata-version: @@ -1252,17 +1729,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1270,7 +1747,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:11 GMT + - Thu, 21 Jan 2021 00:49:56 GMT expires: - '-1' odata-version: @@ -1305,17 +1782,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1323,7 +1800,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:13 GMT + - Thu, 21 Jan 2021 00:49:58 GMT expires: - '-1' odata-version: @@ -1358,17 +1835,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1376,7 +1853,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:15 GMT + - Thu, 21 Jan 2021 00:50:00 GMT expires: - '-1' odata-version: @@ -1411,17 +1888,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1429,7 +1906,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:17 GMT + - Thu, 21 Jan 2021 00:50:02 GMT expires: - '-1' odata-version: @@ -1464,17 +1941,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1482,7 +1959,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:20 GMT + - Thu, 21 Jan 2021 00:50:04 GMT expires: - '-1' odata-version: @@ -1517,17 +1994,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1535,7 +2012,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:22 GMT + - Thu, 21 Jan 2021 00:50:07 GMT expires: - '-1' odata-version: @@ -1570,17 +2047,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1588,7 +2065,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:24 GMT + - Thu, 21 Jan 2021 00:50:09 GMT expires: - '-1' odata-version: @@ -1623,17 +2100,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1641,7 +2118,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:26 GMT + - Thu, 21 Jan 2021 00:50:11 GMT expires: - '-1' odata-version: @@ -1676,17 +2153,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1694,7 +2171,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:28 GMT + - Thu, 21 Jan 2021 00:50:13 GMT expires: - '-1' odata-version: @@ -1729,17 +2206,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1747,7 +2224,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:30 GMT + - Thu, 21 Jan 2021 00:50:15 GMT expires: - '-1' odata-version: @@ -1782,17 +2259,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1800,7 +2277,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:32 GMT + - Thu, 21 Jan 2021 00:50:17 GMT expires: - '-1' odata-version: @@ -1835,17 +2312,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1853,7 +2330,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:34 GMT + - Thu, 21 Jan 2021 00:50:19 GMT expires: - '-1' odata-version: @@ -1888,17 +2365,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1906,7 +2383,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:37 GMT + - Thu, 21 Jan 2021 00:50:21 GMT expires: - '-1' odata-version: @@ -1941,17 +2418,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1959,7 +2436,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:39 GMT + - Thu, 21 Jan 2021 00:50:23 GMT expires: - '-1' odata-version: @@ -1994,17 +2471,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2012,7 +2489,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:41 GMT + - Thu, 21 Jan 2021 00:50:26 GMT expires: - '-1' odata-version: @@ -2047,17 +2524,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2065,7 +2542,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:43 GMT + - Thu, 21 Jan 2021 00:50:28 GMT expires: - '-1' odata-version: @@ -2100,17 +2577,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2118,7 +2595,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:45 GMT + - Thu, 21 Jan 2021 00:50:31 GMT expires: - '-1' odata-version: @@ -2153,17 +2630,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2171,7 +2648,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:47 GMT + - Thu, 21 Jan 2021 00:50:33 GMT expires: - '-1' odata-version: @@ -2206,17 +2683,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2224,7 +2701,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:49 GMT + - Thu, 21 Jan 2021 00:50:35 GMT expires: - '-1' odata-version: @@ -2259,17 +2736,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2277,7 +2754,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:51 GMT + - Thu, 21 Jan 2021 00:50:37 GMT expires: - '-1' odata-version: @@ -2312,17 +2789,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2330,7 +2807,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:54 GMT + - Thu, 21 Jan 2021 00:50:39 GMT expires: - '-1' odata-version: @@ -2365,17 +2842,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2383,7 +2860,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:56 GMT + - Thu, 21 Jan 2021 00:50:41 GMT expires: - '-1' odata-version: @@ -2418,17 +2895,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2436,7 +2913,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:58 GMT + - Thu, 21 Jan 2021 00:50:43 GMT expires: - '-1' odata-version: @@ -2471,17 +2948,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2489,7 +2966,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:00 GMT + - Thu, 21 Jan 2021 00:50:45 GMT expires: - '-1' odata-version: @@ -2524,17 +3001,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2542,7 +3019,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:02 GMT + - Thu, 21 Jan 2021 00:50:47 GMT expires: - '-1' odata-version: @@ -2577,17 +3054,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2595,7 +3072,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:04 GMT + - Thu, 21 Jan 2021 00:50:49 GMT expires: - '-1' odata-version: @@ -2630,17 +3107,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2648,7 +3125,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:06 GMT + - Thu, 21 Jan 2021 00:50:51 GMT expires: - '-1' odata-version: @@ -2683,17 +3160,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2701,7 +3178,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:08 GMT + - Thu, 21 Jan 2021 00:50:53 GMT expires: - '-1' odata-version: @@ -2736,17 +3213,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2754,7 +3231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:11 GMT + - Thu, 21 Jan 2021 00:50:56 GMT expires: - '-1' odata-version: @@ -2789,17 +3266,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2807,7 +3284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:13 GMT + - Thu, 21 Jan 2021 00:50:58 GMT expires: - '-1' odata-version: @@ -2842,17 +3319,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2860,7 +3337,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:15 GMT + - Thu, 21 Jan 2021 00:51:00 GMT expires: - '-1' odata-version: @@ -2895,17 +3372,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2913,7 +3390,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:17 GMT + - Thu, 21 Jan 2021 00:51:02 GMT expires: - '-1' odata-version: @@ -2948,17 +3425,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2966,7 +3443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:19 GMT + - Thu, 21 Jan 2021 00:51:04 GMT expires: - '-1' odata-version: @@ -3001,17 +3478,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3019,7 +3496,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:21 GMT + - Thu, 21 Jan 2021 00:51:06 GMT expires: - '-1' odata-version: @@ -3054,17 +3531,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3072,7 +3549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:23 GMT + - Thu, 21 Jan 2021 00:51:08 GMT expires: - '-1' odata-version: @@ -3107,17 +3584,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3125,7 +3602,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:25 GMT + - Thu, 21 Jan 2021 00:51:10 GMT expires: - '-1' odata-version: @@ -3160,17 +3637,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3178,7 +3655,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:27 GMT + - Thu, 21 Jan 2021 00:51:12 GMT expires: - '-1' odata-version: @@ -3213,17 +3690,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3231,7 +3708,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:30 GMT + - Thu, 21 Jan 2021 00:51:14 GMT expires: - '-1' odata-version: @@ -3266,17 +3743,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3284,7 +3761,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:32 GMT + - Thu, 21 Jan 2021 00:51:16 GMT expires: - '-1' odata-version: @@ -3319,17 +3796,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3337,7 +3814,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:34 GMT + - Thu, 21 Jan 2021 00:51:19 GMT expires: - '-1' odata-version: @@ -3372,17 +3849,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3390,7 +3867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:36 GMT + - Thu, 21 Jan 2021 00:51:21 GMT expires: - '-1' odata-version: @@ -3425,17 +3902,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3443,7 +3920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:38 GMT + - Thu, 21 Jan 2021 00:51:23 GMT expires: - '-1' odata-version: @@ -3478,17 +3955,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3496,7 +3973,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:40 GMT + - Thu, 21 Jan 2021 00:51:25 GMT expires: - '-1' odata-version: @@ -3531,17 +4008,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3549,7 +4026,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:42 GMT + - Thu, 21 Jan 2021 00:51:27 GMT expires: - '-1' odata-version: @@ -3584,17 +4061,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3602,7 +4079,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:44 GMT + - Thu, 21 Jan 2021 00:51:29 GMT expires: - '-1' odata-version: @@ -3637,17 +4114,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3655,7 +4132,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:47 GMT + - Thu, 21 Jan 2021 00:51:31 GMT expires: - '-1' odata-version: @@ -3690,17 +4167,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3708,7 +4185,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:49 GMT + - Thu, 21 Jan 2021 00:51:33 GMT expires: - '-1' odata-version: @@ -3743,17 +4220,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3761,7 +4238,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:51 GMT + - Thu, 21 Jan 2021 00:51:36 GMT expires: - '-1' odata-version: @@ -3796,17 +4273,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3814,7 +4291,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:53 GMT + - Thu, 21 Jan 2021 00:51:38 GMT expires: - '-1' odata-version: @@ -3849,17 +4326,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3867,7 +4344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:55 GMT + - Thu, 21 Jan 2021 00:51:40 GMT expires: - '-1' odata-version: @@ -3902,17 +4379,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3920,7 +4397,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:57 GMT + - Thu, 21 Jan 2021 00:51:42 GMT expires: - '-1' odata-version: @@ -3955,17 +4432,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3973,7 +4450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:59 GMT + - Thu, 21 Jan 2021 00:51:44 GMT expires: - '-1' odata-version: @@ -4008,17 +4485,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4026,7 +4503,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:01 GMT + - Thu, 21 Jan 2021 00:51:47 GMT expires: - '-1' odata-version: @@ -4061,17 +4538,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4079,7 +4556,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:04 GMT + - Thu, 21 Jan 2021 00:51:49 GMT expires: - '-1' odata-version: @@ -4114,17 +4591,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4132,7 +4609,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:06 GMT + - Thu, 21 Jan 2021 00:51:51 GMT expires: - '-1' odata-version: @@ -4167,17 +4644,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4185,7 +4662,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:08 GMT + - Thu, 21 Jan 2021 00:51:53 GMT expires: - '-1' odata-version: @@ -4220,17 +4697,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4238,7 +4715,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:10 GMT + - Thu, 21 Jan 2021 00:51:55 GMT expires: - '-1' odata-version: @@ -4273,17 +4750,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4291,7 +4768,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:12 GMT + - Thu, 21 Jan 2021 00:51:57 GMT expires: - '-1' odata-version: @@ -4326,17 +4803,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4344,7 +4821,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:15 GMT + - Thu, 21 Jan 2021 00:51:59 GMT expires: - '-1' odata-version: @@ -4379,17 +4856,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4397,7 +4874,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:17 GMT + - Thu, 21 Jan 2021 00:52:01 GMT expires: - '-1' odata-version: @@ -4432,17 +4909,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4450,7 +4927,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:19 GMT + - Thu, 21 Jan 2021 00:52:03 GMT expires: - '-1' odata-version: @@ -4485,17 +4962,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4503,7 +4980,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:21 GMT + - Thu, 21 Jan 2021 00:52:05 GMT expires: - '-1' odata-version: @@ -4538,17 +5015,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4556,7 +5033,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:24 GMT + - Thu, 21 Jan 2021 00:52:07 GMT expires: - '-1' odata-version: @@ -4591,17 +5068,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4609,7 +5086,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:26 GMT + - Thu, 21 Jan 2021 00:52:10 GMT expires: - '-1' odata-version: @@ -4644,17 +5121,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4662,7 +5139,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:28 GMT + - Thu, 21 Jan 2021 00:52:12 GMT expires: - '-1' odata-version: @@ -4697,17 +5174,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4715,7 +5192,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:30 GMT + - Thu, 21 Jan 2021 00:52:14 GMT expires: - '-1' odata-version: @@ -4750,17 +5227,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4768,7 +5245,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:32 GMT + - Thu, 21 Jan 2021 00:52:16 GMT expires: - '-1' odata-version: @@ -4803,17 +5280,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4821,7 +5298,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:34 GMT + - Thu, 21 Jan 2021 00:52:18 GMT expires: - '-1' odata-version: @@ -4856,17 +5333,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4874,7 +5351,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:36 GMT + - Thu, 21 Jan 2021 00:52:20 GMT expires: - '-1' odata-version: @@ -4909,17 +5386,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4927,7 +5404,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:38 GMT + - Thu, 21 Jan 2021 00:52:22 GMT expires: - '-1' odata-version: @@ -4962,17 +5439,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4980,7 +5457,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:40 GMT + - Thu, 21 Jan 2021 00:52:24 GMT expires: - '-1' odata-version: @@ -5015,17 +5492,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5033,7 +5510,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:43 GMT + - Thu, 21 Jan 2021 00:52:26 GMT expires: - '-1' odata-version: @@ -5068,17 +5545,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5086,7 +5563,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:45 GMT + - Thu, 21 Jan 2021 00:52:28 GMT expires: - '-1' odata-version: @@ -5121,17 +5598,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5139,7 +5616,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:47 GMT + - Thu, 21 Jan 2021 00:52:30 GMT expires: - '-1' odata-version: @@ -5174,17 +5651,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5192,7 +5669,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:49 GMT + - Thu, 21 Jan 2021 00:52:32 GMT expires: - '-1' odata-version: @@ -5227,17 +5704,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5245,7 +5722,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:51 GMT + - Thu, 21 Jan 2021 00:52:35 GMT expires: - '-1' odata-version: @@ -5280,17 +5757,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5298,7 +5775,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:53 GMT + - Thu, 21 Jan 2021 00:52:37 GMT expires: - '-1' odata-version: @@ -5333,17 +5810,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5351,7 +5828,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:55 GMT + - Thu, 21 Jan 2021 00:52:39 GMT expires: - '-1' odata-version: @@ -5386,17 +5863,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5404,7 +5881,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:57 GMT + - Thu, 21 Jan 2021 00:52:41 GMT expires: - '-1' odata-version: @@ -5439,17 +5916,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5457,7 +5934,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:59 GMT + - Thu, 21 Jan 2021 00:52:43 GMT expires: - '-1' odata-version: @@ -5492,17 +5969,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5510,7 +5987,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:02 GMT + - Thu, 21 Jan 2021 00:52:45 GMT expires: - '-1' odata-version: @@ -5545,17 +6022,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5563,7 +6040,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:04 GMT + - Thu, 21 Jan 2021 00:52:47 GMT expires: - '-1' odata-version: @@ -5598,17 +6075,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5616,7 +6093,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:06 GMT + - Thu, 21 Jan 2021 00:52:49 GMT expires: - '-1' odata-version: @@ -5651,17 +6128,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5669,7 +6146,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:08 GMT + - Thu, 21 Jan 2021 00:52:51 GMT expires: - '-1' odata-version: @@ -5704,17 +6181,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5722,7 +6199,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:10 GMT + - Thu, 21 Jan 2021 00:52:53 GMT expires: - '-1' odata-version: @@ -5757,17 +6234,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5775,7 +6252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:12 GMT + - Thu, 21 Jan 2021 00:52:56 GMT expires: - '-1' odata-version: @@ -5810,17 +6287,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5828,7 +6305,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:14 GMT + - Thu, 21 Jan 2021 00:52:58 GMT expires: - '-1' odata-version: @@ -5863,17 +6340,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5881,7 +6358,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:16 GMT + - Thu, 21 Jan 2021 00:53:00 GMT expires: - '-1' odata-version: @@ -5916,17 +6393,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5934,7 +6411,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:19 GMT + - Thu, 21 Jan 2021 00:53:03 GMT expires: - '-1' odata-version: @@ -5969,17 +6446,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5987,7 +6464,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:21 GMT + - Thu, 21 Jan 2021 00:53:05 GMT expires: - '-1' odata-version: @@ -6022,17 +6499,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6040,7 +6517,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:23 GMT + - Thu, 21 Jan 2021 00:53:07 GMT expires: - '-1' odata-version: @@ -6075,17 +6552,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6093,7 +6570,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:25 GMT + - Thu, 21 Jan 2021 00:53:09 GMT expires: - '-1' odata-version: @@ -6128,17 +6605,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6146,7 +6623,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:27 GMT + - Thu, 21 Jan 2021 00:53:11 GMT expires: - '-1' odata-version: @@ -6181,17 +6658,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6199,7 +6676,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:29 GMT + - Thu, 21 Jan 2021 00:53:13 GMT expires: - '-1' odata-version: @@ -6234,17 +6711,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6252,7 +6729,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:31 GMT + - Thu, 21 Jan 2021 00:53:15 GMT expires: - '-1' odata-version: @@ -6287,17 +6764,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6305,7 +6782,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:33 GMT + - Thu, 21 Jan 2021 00:53:17 GMT expires: - '-1' odata-version: @@ -6340,17 +6817,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6358,7 +6835,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:36 GMT + - Thu, 21 Jan 2021 00:53:20 GMT expires: - '-1' odata-version: @@ -6393,17 +6870,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6411,7 +6888,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:38 GMT + - Thu, 21 Jan 2021 00:53:22 GMT expires: - '-1' odata-version: @@ -6446,17 +6923,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6464,7 +6941,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:40 GMT + - Thu, 21 Jan 2021 00:53:24 GMT expires: - '-1' odata-version: @@ -6499,17 +6976,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6517,7 +6994,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:42 GMT + - Thu, 21 Jan 2021 00:53:26 GMT expires: - '-1' odata-version: @@ -6552,17 +7029,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6570,7 +7047,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:44 GMT + - Thu, 21 Jan 2021 00:53:28 GMT expires: - '-1' odata-version: @@ -6605,17 +7082,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6623,7 +7100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:46 GMT + - Thu, 21 Jan 2021 00:53:30 GMT expires: - '-1' odata-version: @@ -6658,17 +7135,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6676,7 +7153,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:48 GMT + - Thu, 21 Jan 2021 00:53:32 GMT expires: - '-1' odata-version: @@ -6711,17 +7188,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6729,7 +7206,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:50 GMT + - Thu, 21 Jan 2021 00:53:34 GMT expires: - '-1' odata-version: @@ -6764,17 +7241,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6782,7 +7259,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:53 GMT + - Thu, 21 Jan 2021 00:53:36 GMT expires: - '-1' odata-version: @@ -6817,17 +7294,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6835,7 +7312,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:55 GMT + - Thu, 21 Jan 2021 00:53:38 GMT expires: - '-1' odata-version: @@ -6870,17 +7347,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6888,7 +7365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:57 GMT + - Thu, 21 Jan 2021 00:53:40 GMT expires: - '-1' odata-version: @@ -6923,17 +7400,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6941,7 +7418,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:59 GMT + - Thu, 21 Jan 2021 00:53:42 GMT expires: - '-1' odata-version: @@ -6976,17 +7453,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6994,7 +7471,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:01 GMT + - Thu, 21 Jan 2021 00:53:45 GMT expires: - '-1' odata-version: @@ -7029,17 +7506,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7047,7 +7524,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:03 GMT + - Thu, 21 Jan 2021 00:53:47 GMT expires: - '-1' odata-version: @@ -7082,17 +7559,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7100,7 +7577,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:06 GMT + - Thu, 21 Jan 2021 00:53:49 GMT expires: - '-1' odata-version: @@ -7135,17 +7612,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7153,7 +7630,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:09 GMT + - Thu, 21 Jan 2021 00:53:51 GMT expires: - '-1' odata-version: @@ -7188,17 +7665,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7206,7 +7683,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:11 GMT + - Thu, 21 Jan 2021 00:53:53 GMT expires: - '-1' odata-version: @@ -7241,17 +7718,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7259,7 +7736,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:13 GMT + - Thu, 21 Jan 2021 00:53:55 GMT expires: - '-1' odata-version: @@ -7294,17 +7771,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7312,7 +7789,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:15 GMT + - Thu, 21 Jan 2021 00:53:57 GMT expires: - '-1' odata-version: @@ -7347,17 +7824,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7365,7 +7842,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:17 GMT + - Thu, 21 Jan 2021 00:53:59 GMT expires: - '-1' odata-version: @@ -7400,17 +7877,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7418,7 +7895,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:19 GMT + - Thu, 21 Jan 2021 00:54:01 GMT expires: - '-1' odata-version: @@ -7453,17 +7930,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7471,7 +7948,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:21 GMT + - Thu, 21 Jan 2021 00:54:03 GMT expires: - '-1' odata-version: @@ -7506,17 +7983,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7524,7 +8001,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:24 GMT + - Thu, 21 Jan 2021 00:54:06 GMT expires: - '-1' odata-version: @@ -7559,17 +8036,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7577,7 +8054,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:26 GMT + - Thu, 21 Jan 2021 00:54:08 GMT expires: - '-1' odata-version: @@ -7612,17 +8089,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7630,7 +8107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:28 GMT + - Thu, 21 Jan 2021 00:54:10 GMT expires: - '-1' odata-version: @@ -7665,17 +8142,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7683,7 +8160,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:30 GMT + - Thu, 21 Jan 2021 00:54:12 GMT expires: - '-1' odata-version: @@ -7718,17 +8195,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7736,7 +8213,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:32 GMT + - Thu, 21 Jan 2021 00:54:14 GMT expires: - '-1' odata-version: @@ -7771,17 +8248,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7789,7 +8266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:34 GMT + - Thu, 21 Jan 2021 00:54:16 GMT expires: - '-1' odata-version: @@ -7824,17 +8301,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7842,7 +8319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:36 GMT + - Thu, 21 Jan 2021 00:54:18 GMT expires: - '-1' odata-version: @@ -7877,17 +8354,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7895,7 +8372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:38 GMT + - Thu, 21 Jan 2021 00:54:21 GMT expires: - '-1' odata-version: @@ -7930,17 +8407,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7948,7 +8425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:41 GMT + - Thu, 21 Jan 2021 00:54:23 GMT expires: - '-1' odata-version: @@ -7983,17 +8460,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8001,7 +8478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:43 GMT + - Thu, 21 Jan 2021 00:54:25 GMT expires: - '-1' odata-version: @@ -8036,17 +8513,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8054,7 +8531,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:45 GMT + - Thu, 21 Jan 2021 00:54:27 GMT expires: - '-1' odata-version: @@ -8089,17 +8566,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8107,7 +8584,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:47 GMT + - Thu, 21 Jan 2021 00:54:29 GMT expires: - '-1' odata-version: @@ -8142,17 +8619,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8160,7 +8637,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:49 GMT + - Thu, 21 Jan 2021 00:54:31 GMT expires: - '-1' odata-version: @@ -8195,17 +8672,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8213,7 +8690,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:51 GMT + - Thu, 21 Jan 2021 00:54:34 GMT expires: - '-1' odata-version: @@ -8248,17 +8725,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8266,7 +8743,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:53 GMT + - Thu, 21 Jan 2021 00:54:36 GMT expires: - '-1' odata-version: @@ -8301,17 +8778,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8319,7 +8796,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:55 GMT + - Thu, 21 Jan 2021 00:54:38 GMT expires: - '-1' odata-version: @@ -8354,17 +8831,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8372,7 +8849,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:58 GMT + - Thu, 21 Jan 2021 00:54:40 GMT expires: - '-1' odata-version: @@ -8407,17 +8884,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8425,7 +8902,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:00 GMT + - Thu, 21 Jan 2021 00:54:42 GMT expires: - '-1' odata-version: @@ -8460,17 +8937,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8478,7 +8955,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:02 GMT + - Thu, 21 Jan 2021 00:54:44 GMT expires: - '-1' odata-version: @@ -8513,17 +8990,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8531,7 +9008,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:04 GMT + - Thu, 21 Jan 2021 00:54:46 GMT expires: - '-1' odata-version: @@ -8566,17 +9043,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8584,7 +9061,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:06 GMT + - Thu, 21 Jan 2021 00:54:48 GMT expires: - '-1' odata-version: @@ -8619,17 +9096,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8637,7 +9114,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:08 GMT + - Thu, 21 Jan 2021 00:54:50 GMT expires: - '-1' odata-version: @@ -8672,17 +9149,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8690,7 +9167,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:10 GMT + - Thu, 21 Jan 2021 00:54:52 GMT expires: - '-1' odata-version: @@ -8725,17 +9202,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8743,7 +9220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:12 GMT + - Thu, 21 Jan 2021 00:54:54 GMT expires: - '-1' odata-version: @@ -8778,17 +9255,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8796,7 +9273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:14 GMT + - Thu, 21 Jan 2021 00:54:56 GMT expires: - '-1' odata-version: @@ -8831,17 +9308,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8849,7 +9326,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:17 GMT + - Thu, 21 Jan 2021 00:54:59 GMT expires: - '-1' odata-version: @@ -8884,17 +9361,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8902,7 +9379,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:19 GMT + - Thu, 21 Jan 2021 00:55:01 GMT expires: - '-1' odata-version: @@ -8937,17 +9414,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8955,7 +9432,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:21 GMT + - Thu, 21 Jan 2021 00:55:03 GMT expires: - '-1' odata-version: @@ -8990,17 +9467,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9008,7 +9485,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:23 GMT + - Thu, 21 Jan 2021 00:55:05 GMT expires: - '-1' odata-version: @@ -9043,17 +9520,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9061,7 +9538,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:25 GMT + - Thu, 21 Jan 2021 00:55:07 GMT expires: - '-1' odata-version: @@ -9096,17 +9573,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9114,7 +9591,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:27 GMT + - Thu, 21 Jan 2021 00:55:09 GMT expires: - '-1' odata-version: @@ -9149,17 +9626,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9167,7 +9644,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:30 GMT + - Thu, 21 Jan 2021 00:55:11 GMT expires: - '-1' odata-version: @@ -9202,17 +9679,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9220,7 +9697,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:32 GMT + - Thu, 21 Jan 2021 00:55:13 GMT expires: - '-1' odata-version: @@ -9255,17 +9732,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9273,7 +9750,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:34 GMT + - Thu, 21 Jan 2021 00:55:15 GMT expires: - '-1' odata-version: @@ -9308,17 +9785,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9326,7 +9803,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:36 GMT + - Thu, 21 Jan 2021 00:55:17 GMT expires: - '-1' odata-version: @@ -9361,17 +9838,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9379,7 +9856,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:38 GMT + - Thu, 21 Jan 2021 00:55:19 GMT expires: - '-1' odata-version: @@ -9414,17 +9891,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9432,7 +9909,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:41 GMT + - Thu, 21 Jan 2021 00:55:21 GMT expires: - '-1' odata-version: @@ -9467,17 +9944,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9485,7 +9962,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:44 GMT + - Thu, 21 Jan 2021 00:55:23 GMT expires: - '-1' odata-version: @@ -9520,17 +9997,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9538,7 +10015,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:46 GMT + - Thu, 21 Jan 2021 00:55:26 GMT expires: - '-1' odata-version: @@ -9573,17 +10050,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9591,7 +10068,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:48 GMT + - Thu, 21 Jan 2021 00:55:28 GMT expires: - '-1' odata-version: @@ -9626,17 +10103,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9644,7 +10121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:50 GMT + - Thu, 21 Jan 2021 00:55:30 GMT expires: - '-1' odata-version: @@ -9679,17 +10156,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9697,7 +10174,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:52 GMT + - Thu, 21 Jan 2021 00:55:32 GMT expires: - '-1' odata-version: @@ -9732,17 +10209,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9750,7 +10227,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:54 GMT + - Thu, 21 Jan 2021 00:55:35 GMT expires: - '-1' odata-version: @@ -9785,17 +10262,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9803,7 +10280,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:56 GMT + - Thu, 21 Jan 2021 00:55:37 GMT expires: - '-1' odata-version: @@ -9838,17 +10315,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9856,7 +10333,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:58 GMT + - Thu, 21 Jan 2021 00:55:39 GMT expires: - '-1' odata-version: @@ -9891,17 +10368,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9909,7 +10386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:01 GMT + - Thu, 21 Jan 2021 00:55:41 GMT expires: - '-1' odata-version: @@ -9944,17 +10421,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9962,7 +10439,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:03 GMT + - Thu, 21 Jan 2021 00:55:43 GMT expires: - '-1' odata-version: @@ -9997,17 +10474,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10015,7 +10492,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:05 GMT + - Thu, 21 Jan 2021 00:55:45 GMT expires: - '-1' odata-version: @@ -10050,17 +10527,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10068,7 +10545,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:07 GMT + - Thu, 21 Jan 2021 00:55:47 GMT expires: - '-1' odata-version: @@ -10103,17 +10580,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10121,7 +10598,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:09 GMT + - Thu, 21 Jan 2021 00:55:49 GMT expires: - '-1' odata-version: @@ -10156,17 +10633,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10174,7 +10651,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:12 GMT + - Thu, 21 Jan 2021 00:55:52 GMT expires: - '-1' odata-version: @@ -10209,17 +10686,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10227,7 +10704,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:14 GMT + - Thu, 21 Jan 2021 00:55:54 GMT expires: - '-1' odata-version: @@ -10262,17 +10739,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10280,7 +10757,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:16 GMT + - Thu, 21 Jan 2021 00:55:56 GMT expires: - '-1' odata-version: @@ -10315,17 +10792,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10333,7 +10810,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:19 GMT + - Thu, 21 Jan 2021 00:55:58 GMT expires: - '-1' odata-version: @@ -10368,17 +10845,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10386,7 +10863,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:21 GMT + - Thu, 21 Jan 2021 00:56:00 GMT expires: - '-1' odata-version: @@ -10421,17 +10898,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10439,7 +10916,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:23 GMT + - Thu, 21 Jan 2021 00:56:02 GMT expires: - '-1' odata-version: @@ -10474,17 +10951,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10492,7 +10969,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:25 GMT + - Thu, 21 Jan 2021 00:56:04 GMT expires: - '-1' odata-version: @@ -10527,17 +11004,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10545,7 +11022,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:27 GMT + - Thu, 21 Jan 2021 00:56:06 GMT expires: - '-1' odata-version: @@ -10580,17 +11057,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10598,7 +11075,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:29 GMT + - Thu, 21 Jan 2021 00:56:08 GMT expires: - '-1' odata-version: @@ -10633,17 +11110,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10651,7 +11128,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:31 GMT + - Thu, 21 Jan 2021 00:56:10 GMT expires: - '-1' odata-version: @@ -10686,17 +11163,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10704,7 +11181,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:33 GMT + - Thu, 21 Jan 2021 00:56:12 GMT expires: - '-1' odata-version: @@ -10739,17 +11216,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10757,7 +11234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:36 GMT + - Thu, 21 Jan 2021 00:56:15 GMT expires: - '-1' odata-version: @@ -10792,17 +11269,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10810,7 +11287,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:38 GMT + - Thu, 21 Jan 2021 00:56:17 GMT expires: - '-1' odata-version: @@ -10845,17 +11322,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10863,7 +11340,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:40 GMT + - Thu, 21 Jan 2021 00:56:19 GMT expires: - '-1' odata-version: @@ -10898,17 +11375,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10916,7 +11393,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:42 GMT + - Thu, 21 Jan 2021 00:56:21 GMT expires: - '-1' odata-version: @@ -10951,17 +11428,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10969,7 +11446,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:44 GMT + - Thu, 21 Jan 2021 00:56:23 GMT expires: - '-1' odata-version: @@ -11004,17 +11481,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11022,7 +11499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:46 GMT + - Thu, 21 Jan 2021 00:56:25 GMT expires: - '-1' odata-version: @@ -11057,17 +11534,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11075,7 +11552,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:48 GMT + - Thu, 21 Jan 2021 00:56:27 GMT expires: - '-1' odata-version: @@ -11110,17 +11587,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11128,7 +11605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:50 GMT + - Thu, 21 Jan 2021 00:56:29 GMT expires: - '-1' odata-version: @@ -11163,17 +11640,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11181,7 +11658,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:52 GMT + - Thu, 21 Jan 2021 00:56:31 GMT expires: - '-1' odata-version: @@ -11216,17 +11693,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11234,7 +11711,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:55 GMT + - Thu, 21 Jan 2021 00:56:33 GMT expires: - '-1' odata-version: @@ -11269,17 +11746,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11287,7 +11764,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:57 GMT + - Thu, 21 Jan 2021 00:56:35 GMT expires: - '-1' odata-version: @@ -11322,17 +11799,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11340,7 +11817,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:59 GMT + - Thu, 21 Jan 2021 00:56:37 GMT expires: - '-1' odata-version: @@ -11375,17 +11852,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11393,7 +11870,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:01 GMT + - Thu, 21 Jan 2021 00:56:39 GMT expires: - '-1' odata-version: @@ -11428,17 +11905,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11446,7 +11923,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:03 GMT + - Thu, 21 Jan 2021 00:56:41 GMT expires: - '-1' odata-version: @@ -11481,17 +11958,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11499,7 +11976,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:05 GMT + - Thu, 21 Jan 2021 00:56:44 GMT expires: - '-1' odata-version: @@ -11534,17 +12011,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11552,7 +12029,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:07 GMT + - Thu, 21 Jan 2021 00:56:47 GMT expires: - '-1' odata-version: @@ -11587,17 +12064,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11605,7 +12082,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:09 GMT + - Thu, 21 Jan 2021 00:56:49 GMT expires: - '-1' odata-version: @@ -11640,17 +12117,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11658,7 +12135,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:12 GMT + - Thu, 21 Jan 2021 00:56:51 GMT expires: - '-1' odata-version: @@ -11693,17 +12170,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11711,7 +12188,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:14 GMT + - Thu, 21 Jan 2021 00:56:53 GMT expires: - '-1' odata-version: @@ -11746,17 +12223,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11764,7 +12241,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:16 GMT + - Thu, 21 Jan 2021 00:56:55 GMT expires: - '-1' odata-version: @@ -11799,17 +12276,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11817,7 +12294,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:18 GMT + - Thu, 21 Jan 2021 00:56:57 GMT expires: - '-1' odata-version: @@ -11852,17 +12329,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11870,7 +12347,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:20 GMT + - Thu, 21 Jan 2021 00:56:59 GMT expires: - '-1' odata-version: @@ -11905,17 +12382,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11923,7 +12400,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:22 GMT + - Thu, 21 Jan 2021 00:57:01 GMT expires: - '-1' odata-version: @@ -11958,17 +12435,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11976,7 +12453,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:24 GMT + - Thu, 21 Jan 2021 00:57:03 GMT expires: - '-1' odata-version: @@ -12011,17 +12488,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12029,7 +12506,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:26 GMT + - Thu, 21 Jan 2021 00:57:06 GMT expires: - '-1' odata-version: @@ -12064,17 +12541,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12082,7 +12559,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:29 GMT + - Thu, 21 Jan 2021 00:57:08 GMT expires: - '-1' odata-version: @@ -12117,17 +12594,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12135,7 +12612,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:31 GMT + - Thu, 21 Jan 2021 00:57:10 GMT expires: - '-1' odata-version: @@ -12170,17 +12647,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12188,7 +12665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:33 GMT + - Thu, 21 Jan 2021 00:57:12 GMT expires: - '-1' odata-version: @@ -12223,17 +12700,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12241,7 +12718,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:35 GMT + - Thu, 21 Jan 2021 00:57:14 GMT expires: - '-1' odata-version: @@ -12276,17 +12753,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12294,7 +12771,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:37 GMT + - Thu, 21 Jan 2021 00:57:16 GMT expires: - '-1' odata-version: @@ -12329,17 +12806,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12347,7 +12824,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:39 GMT + - Thu, 21 Jan 2021 00:57:18 GMT expires: - '-1' odata-version: @@ -12382,17 +12859,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12400,7 +12877,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:41 GMT + - Thu, 21 Jan 2021 00:57:20 GMT expires: - '-1' odata-version: @@ -12435,17 +12912,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12453,7 +12930,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:43 GMT + - Thu, 21 Jan 2021 00:57:22 GMT expires: - '-1' odata-version: @@ -12488,17 +12965,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12506,7 +12983,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:46 GMT + - Thu, 21 Jan 2021 00:57:24 GMT expires: - '-1' odata-version: @@ -12541,17 +13018,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12559,7 +13036,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:48 GMT + - Thu, 21 Jan 2021 00:57:26 GMT expires: - '-1' odata-version: @@ -12594,17 +13071,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12612,7 +13089,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:50 GMT + - Thu, 21 Jan 2021 00:57:28 GMT expires: - '-1' odata-version: @@ -12647,17 +13124,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12665,7 +13142,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:52 GMT + - Thu, 21 Jan 2021 00:57:30 GMT expires: - '-1' odata-version: @@ -12700,17 +13177,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12718,7 +13195,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:54 GMT + - Thu, 21 Jan 2021 00:57:33 GMT expires: - '-1' odata-version: @@ -12753,17 +13230,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12771,7 +13248,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:56 GMT + - Thu, 21 Jan 2021 00:57:35 GMT expires: - '-1' odata-version: @@ -12806,17 +13283,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12824,7 +13301,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:58 GMT + - Thu, 21 Jan 2021 00:57:37 GMT expires: - '-1' odata-version: @@ -12859,17 +13336,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12877,7 +13354,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:00 GMT + - Thu, 21 Jan 2021 00:57:39 GMT expires: - '-1' odata-version: @@ -12912,17 +13389,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12930,7 +13407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:03 GMT + - Thu, 21 Jan 2021 00:57:41 GMT expires: - '-1' odata-version: @@ -12965,17 +13442,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12983,7 +13460,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:05 GMT + - Thu, 21 Jan 2021 00:57:43 GMT expires: - '-1' odata-version: @@ -13018,17 +13495,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13036,7 +13513,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:07 GMT + - Thu, 21 Jan 2021 00:57:45 GMT expires: - '-1' odata-version: @@ -13071,17 +13548,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13089,7 +13566,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:09 GMT + - Thu, 21 Jan 2021 00:57:47 GMT expires: - '-1' odata-version: @@ -13124,17 +13601,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13142,7 +13619,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:11 GMT + - Thu, 21 Jan 2021 00:57:50 GMT expires: - '-1' odata-version: @@ -13177,17 +13654,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13195,7 +13672,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:13 GMT + - Thu, 21 Jan 2021 00:57:52 GMT expires: - '-1' odata-version: @@ -13230,17 +13707,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13248,7 +13725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:15 GMT + - Thu, 21 Jan 2021 00:57:54 GMT expires: - '-1' odata-version: @@ -13283,17 +13760,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13301,7 +13778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:17 GMT + - Thu, 21 Jan 2021 00:57:57 GMT expires: - '-1' odata-version: @@ -13336,17 +13813,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13354,7 +13831,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:19 GMT + - Thu, 21 Jan 2021 00:57:59 GMT expires: - '-1' odata-version: @@ -13389,17 +13866,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13407,7 +13884,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:23 GMT + - Thu, 21 Jan 2021 00:58:01 GMT expires: - '-1' odata-version: @@ -13442,17 +13919,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13460,7 +13937,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:25 GMT + - Thu, 21 Jan 2021 00:58:03 GMT expires: - '-1' odata-version: @@ -13495,17 +13972,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13513,7 +13990,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:27 GMT + - Thu, 21 Jan 2021 00:58:05 GMT expires: - '-1' odata-version: @@ -13548,17 +14025,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13566,7 +14043,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:29 GMT + - Thu, 21 Jan 2021 00:58:07 GMT expires: - '-1' odata-version: @@ -13601,17 +14078,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13619,7 +14096,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:31 GMT + - Thu, 21 Jan 2021 00:58:09 GMT expires: - '-1' odata-version: @@ -13654,17 +14131,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13672,7 +14149,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:33 GMT + - Thu, 21 Jan 2021 00:58:11 GMT expires: - '-1' odata-version: @@ -13707,17 +14184,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13725,7 +14202,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:35 GMT + - Thu, 21 Jan 2021 00:58:13 GMT expires: - '-1' odata-version: @@ -13760,17 +14237,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13778,7 +14255,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:37 GMT + - Thu, 21 Jan 2021 00:58:15 GMT expires: - '-1' odata-version: @@ -13813,17 +14290,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13831,7 +14308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:39 GMT + - Thu, 21 Jan 2021 00:58:17 GMT expires: - '-1' odata-version: @@ -13866,17 +14343,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13884,7 +14361,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:42 GMT + - Thu, 21 Jan 2021 00:58:20 GMT expires: - '-1' odata-version: @@ -13919,17 +14396,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13937,7 +14414,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:44 GMT + - Thu, 21 Jan 2021 00:58:22 GMT expires: - '-1' odata-version: @@ -13972,17 +14449,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13990,7 +14467,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:46 GMT + - Thu, 21 Jan 2021 00:58:24 GMT expires: - '-1' odata-version: @@ -14025,17 +14502,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14043,7 +14520,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:48 GMT + - Thu, 21 Jan 2021 00:58:26 GMT expires: - '-1' odata-version: @@ -14078,17 +14555,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14096,7 +14573,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:50 GMT + - Thu, 21 Jan 2021 00:58:28 GMT expires: - '-1' odata-version: @@ -14131,17 +14608,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14149,7 +14626,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:53 GMT + - Thu, 21 Jan 2021 00:58:30 GMT expires: - '-1' odata-version: @@ -14184,17 +14661,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14202,7 +14679,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:55 GMT + - Thu, 21 Jan 2021 00:58:32 GMT expires: - '-1' odata-version: @@ -14237,17 +14714,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14255,7 +14732,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:57 GMT + - Thu, 21 Jan 2021 00:58:34 GMT expires: - '-1' odata-version: @@ -14290,17 +14767,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14308,7 +14785,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:59 GMT + - Thu, 21 Jan 2021 00:58:36 GMT expires: - '-1' odata-version: @@ -14343,17 +14820,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14361,7 +14838,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:01 GMT + - Thu, 21 Jan 2021 00:58:38 GMT expires: - '-1' odata-version: @@ -14396,17 +14873,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14414,7 +14891,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:03 GMT + - Thu, 21 Jan 2021 00:58:40 GMT expires: - '-1' odata-version: @@ -14449,17 +14926,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14467,7 +14944,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:05 GMT + - Thu, 21 Jan 2021 00:58:42 GMT expires: - '-1' odata-version: @@ -14502,17 +14979,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14520,7 +14997,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:07 GMT + - Thu, 21 Jan 2021 00:58:45 GMT expires: - '-1' odata-version: @@ -14555,17 +15032,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14573,7 +15050,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:10 GMT + - Thu, 21 Jan 2021 00:58:47 GMT expires: - '-1' odata-version: @@ -14608,17 +15085,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14626,7 +15103,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:12 GMT + - Thu, 21 Jan 2021 00:58:49 GMT expires: - '-1' odata-version: @@ -14661,17 +15138,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14679,7 +15156,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:14 GMT + - Thu, 21 Jan 2021 00:58:51 GMT expires: - '-1' odata-version: @@ -14714,17 +15191,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14732,7 +15209,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:16 GMT + - Thu, 21 Jan 2021 00:58:53 GMT expires: - '-1' odata-version: @@ -14767,17 +15244,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14785,7 +15262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:18 GMT + - Thu, 21 Jan 2021 00:58:55 GMT expires: - '-1' odata-version: @@ -14820,17 +15297,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14838,7 +15315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:20 GMT + - Thu, 21 Jan 2021 00:58:57 GMT expires: - '-1' odata-version: @@ -14873,17 +15350,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14891,7 +15368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:22 GMT + - Thu, 21 Jan 2021 00:58:59 GMT expires: - '-1' odata-version: @@ -14926,17 +15403,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14944,7 +15421,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:24 GMT + - Thu, 21 Jan 2021 00:59:01 GMT expires: - '-1' odata-version: @@ -14979,17 +15456,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14997,7 +15474,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:26 GMT + - Thu, 21 Jan 2021 00:59:03 GMT expires: - '-1' odata-version: @@ -15032,17 +15509,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15050,7 +15527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:29 GMT + - Thu, 21 Jan 2021 00:59:06 GMT expires: - '-1' odata-version: @@ -15085,17 +15562,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15103,7 +15580,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:31 GMT + - Thu, 21 Jan 2021 00:59:08 GMT expires: - '-1' odata-version: @@ -15138,17 +15615,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15156,7 +15633,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:33 GMT + - Thu, 21 Jan 2021 00:59:10 GMT expires: - '-1' odata-version: @@ -15191,17 +15668,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15209,7 +15686,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:35 GMT + - Thu, 21 Jan 2021 00:59:12 GMT expires: - '-1' odata-version: @@ -15244,17 +15721,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15262,7 +15739,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:37 GMT + - Thu, 21 Jan 2021 00:59:14 GMT expires: - '-1' odata-version: @@ -15297,17 +15774,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15315,7 +15792,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:39 GMT + - Thu, 21 Jan 2021 00:59:16 GMT expires: - '-1' odata-version: @@ -15350,17 +15827,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15368,7 +15845,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:41 GMT + - Thu, 21 Jan 2021 00:59:18 GMT expires: - '-1' odata-version: @@ -15403,17 +15880,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15421,7 +15898,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:43 GMT + - Thu, 21 Jan 2021 00:59:20 GMT expires: - '-1' odata-version: @@ -15456,17 +15933,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15474,7 +15951,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:46 GMT + - Thu, 21 Jan 2021 00:59:23 GMT expires: - '-1' odata-version: @@ -15509,17 +15986,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15527,7 +16004,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:48 GMT + - Thu, 21 Jan 2021 00:59:25 GMT expires: - '-1' odata-version: @@ -15562,17 +16039,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15580,7 +16057,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:50 GMT + - Thu, 21 Jan 2021 00:59:27 GMT expires: - '-1' odata-version: @@ -15615,17 +16092,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15633,7 +16110,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:52 GMT + - Thu, 21 Jan 2021 00:59:30 GMT expires: - '-1' odata-version: @@ -15668,17 +16145,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15686,7 +16163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:54 GMT + - Thu, 21 Jan 2021 00:59:32 GMT expires: - '-1' odata-version: @@ -15721,17 +16198,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15739,7 +16216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:56 GMT + - Thu, 21 Jan 2021 00:59:34 GMT expires: - '-1' odata-version: @@ -15774,17 +16251,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15792,7 +16269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:58 GMT + - Thu, 21 Jan 2021 00:59:36 GMT expires: - '-1' odata-version: @@ -15827,17 +16304,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15845,7 +16322,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:00 GMT + - Thu, 21 Jan 2021 00:59:38 GMT expires: - '-1' odata-version: @@ -15880,17 +16357,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15898,7 +16375,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:02 GMT + - Thu, 21 Jan 2021 00:59:40 GMT expires: - '-1' odata-version: @@ -15933,17 +16410,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15951,7 +16428,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:05 GMT + - Thu, 21 Jan 2021 00:59:42 GMT expires: - '-1' odata-version: @@ -15986,17 +16463,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16004,7 +16481,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:07 GMT + - Thu, 21 Jan 2021 00:59:44 GMT expires: - '-1' odata-version: @@ -16039,17 +16516,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16057,7 +16534,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:09 GMT + - Thu, 21 Jan 2021 00:59:46 GMT expires: - '-1' odata-version: @@ -16092,17 +16569,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16110,7 +16587,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:11 GMT + - Thu, 21 Jan 2021 00:59:48 GMT expires: - '-1' odata-version: @@ -16145,17 +16622,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16163,7 +16640,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:13 GMT + - Thu, 21 Jan 2021 00:59:50 GMT expires: - '-1' odata-version: @@ -16198,17 +16675,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16216,7 +16693,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:15 GMT + - Thu, 21 Jan 2021 00:59:53 GMT expires: - '-1' odata-version: @@ -16251,17 +16728,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16269,7 +16746,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:17 GMT + - Thu, 21 Jan 2021 00:59:55 GMT expires: - '-1' odata-version: @@ -16304,17 +16781,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16322,7 +16799,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:19 GMT + - Thu, 21 Jan 2021 00:59:57 GMT expires: - '-1' odata-version: @@ -16357,17 +16834,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16375,7 +16852,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:22 GMT + - Thu, 21 Jan 2021 00:59:59 GMT expires: - '-1' odata-version: @@ -16410,17 +16887,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16428,7 +16905,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:24 GMT + - Thu, 21 Jan 2021 01:00:01 GMT expires: - '-1' odata-version: @@ -16463,17 +16940,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16481,7 +16958,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:26 GMT + - Thu, 21 Jan 2021 01:00:03 GMT expires: - '-1' odata-version: @@ -16516,17 +16993,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16534,7 +17011,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:28 GMT + - Thu, 21 Jan 2021 01:00:05 GMT expires: - '-1' odata-version: @@ -16569,17 +17046,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16587,7 +17064,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:31 GMT + - Thu, 21 Jan 2021 01:00:07 GMT expires: - '-1' odata-version: @@ -16622,17 +17099,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16640,7 +17117,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:33 GMT + - Thu, 21 Jan 2021 01:00:09 GMT expires: - '-1' odata-version: @@ -16675,17 +17152,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16693,7 +17170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:35 GMT + - Thu, 21 Jan 2021 01:00:11 GMT expires: - '-1' odata-version: @@ -16728,17 +17205,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16746,7 +17223,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:37 GMT + - Thu, 21 Jan 2021 01:00:13 GMT expires: - '-1' odata-version: @@ -16781,17 +17258,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16799,7 +17276,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:39 GMT + - Thu, 21 Jan 2021 01:00:15 GMT expires: - '-1' odata-version: @@ -16834,17 +17311,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16852,7 +17329,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:42 GMT + - Thu, 21 Jan 2021 01:00:17 GMT expires: - '-1' odata-version: @@ -16887,17 +17364,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16905,7 +17382,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:44 GMT + - Thu, 21 Jan 2021 01:00:19 GMT expires: - '-1' odata-version: @@ -16940,17 +17417,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16958,7 +17435,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:46 GMT + - Thu, 21 Jan 2021 01:00:22 GMT expires: - '-1' odata-version: @@ -16993,17 +17470,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17011,7 +17488,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:48 GMT + - Thu, 21 Jan 2021 01:00:24 GMT expires: - '-1' odata-version: @@ -17046,17 +17523,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17064,7 +17541,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:50 GMT + - Thu, 21 Jan 2021 01:00:26 GMT expires: - '-1' odata-version: @@ -17099,17 +17576,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17117,7 +17594,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:52 GMT + - Thu, 21 Jan 2021 01:00:28 GMT expires: - '-1' odata-version: @@ -17152,17 +17629,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17170,7 +17647,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:54 GMT + - Thu, 21 Jan 2021 01:00:30 GMT expires: - '-1' odata-version: @@ -17205,17 +17682,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17223,7 +17700,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:57 GMT + - Thu, 21 Jan 2021 01:00:32 GMT expires: - '-1' odata-version: @@ -17258,17 +17735,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17276,7 +17753,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:59 GMT + - Thu, 21 Jan 2021 01:00:34 GMT expires: - '-1' odata-version: @@ -17311,17 +17788,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17329,7 +17806,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:01 GMT + - Thu, 21 Jan 2021 01:00:36 GMT expires: - '-1' odata-version: @@ -17364,17 +17841,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17382,7 +17859,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:03 GMT + - Thu, 21 Jan 2021 01:00:38 GMT expires: - '-1' odata-version: @@ -17417,17 +17894,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17435,7 +17912,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:05 GMT + - Thu, 21 Jan 2021 01:00:40 GMT expires: - '-1' odata-version: @@ -17470,17 +17947,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17488,7 +17965,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:07 GMT + - Thu, 21 Jan 2021 01:00:43 GMT expires: - '-1' odata-version: @@ -17523,17 +18000,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17541,7 +18018,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:09 GMT + - Thu, 21 Jan 2021 01:00:46 GMT expires: - '-1' odata-version: @@ -17576,17 +18053,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17594,7 +18071,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:11 GMT + - Thu, 21 Jan 2021 01:00:48 GMT expires: - '-1' odata-version: @@ -17629,17 +18106,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17647,7 +18124,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:13 GMT + - Thu, 21 Jan 2021 01:00:50 GMT expires: - '-1' odata-version: @@ -17682,17 +18159,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17700,7 +18177,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:16 GMT + - Thu, 21 Jan 2021 01:00:52 GMT expires: - '-1' odata-version: @@ -17735,17 +18212,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17753,7 +18230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:18 GMT + - Thu, 21 Jan 2021 01:00:54 GMT expires: - '-1' odata-version: @@ -17788,17 +18265,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17806,7 +18283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:20 GMT + - Thu, 21 Jan 2021 01:00:56 GMT expires: - '-1' odata-version: @@ -17841,17 +18318,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17859,7 +18336,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:22 GMT + - Thu, 21 Jan 2021 01:00:58 GMT expires: - '-1' odata-version: @@ -17894,17 +18371,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17912,7 +18389,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:24 GMT + - Thu, 21 Jan 2021 01:01:00 GMT expires: - '-1' odata-version: @@ -17947,17 +18424,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17965,7 +18442,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:26 GMT + - Thu, 21 Jan 2021 01:01:03 GMT expires: - '-1' odata-version: @@ -18000,17 +18477,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18018,7 +18495,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:28 GMT + - Thu, 21 Jan 2021 01:01:05 GMT expires: - '-1' odata-version: @@ -18053,17 +18530,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18071,7 +18548,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:30 GMT + - Thu, 21 Jan 2021 01:01:07 GMT expires: - '-1' odata-version: @@ -18106,17 +18583,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18124,7 +18601,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:32 GMT + - Thu, 21 Jan 2021 01:01:09 GMT expires: - '-1' odata-version: @@ -18159,17 +18636,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18177,7 +18654,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:35 GMT + - Thu, 21 Jan 2021 01:01:11 GMT expires: - '-1' odata-version: @@ -18212,17 +18689,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18230,7 +18707,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:37 GMT + - Thu, 21 Jan 2021 01:01:13 GMT expires: - '-1' odata-version: @@ -18265,17 +18742,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18283,7 +18760,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:39 GMT + - Thu, 21 Jan 2021 01:01:15 GMT expires: - '-1' odata-version: @@ -18318,17 +18795,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18336,7 +18813,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:41 GMT + - Thu, 21 Jan 2021 01:01:17 GMT expires: - '-1' odata-version: @@ -18371,17 +18848,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18389,7 +18866,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:43 GMT + - Thu, 21 Jan 2021 01:01:19 GMT expires: - '-1' odata-version: @@ -18424,17 +18901,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18442,7 +18919,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:45 GMT + - Thu, 21 Jan 2021 01:01:22 GMT expires: - '-1' odata-version: @@ -18477,17 +18954,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18495,7 +18972,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:47 GMT + - Thu, 21 Jan 2021 01:01:24 GMT expires: - '-1' odata-version: @@ -18530,17 +19007,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18548,7 +19025,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:49 GMT + - Thu, 21 Jan 2021 01:01:26 GMT expires: - '-1' odata-version: @@ -18583,17 +19060,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18601,7 +19078,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:51 GMT + - Thu, 21 Jan 2021 01:01:28 GMT expires: - '-1' odata-version: @@ -18636,17 +19113,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18654,7 +19131,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:54 GMT + - Thu, 21 Jan 2021 01:01:30 GMT expires: - '-1' odata-version: @@ -18689,17 +19166,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18707,7 +19184,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:56 GMT + - Thu, 21 Jan 2021 01:01:32 GMT expires: - '-1' odata-version: @@ -18742,17 +19219,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18760,7 +19237,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:58 GMT + - Thu, 21 Jan 2021 01:01:34 GMT expires: - '-1' odata-version: @@ -18795,17 +19272,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18813,7 +19290,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:00 GMT + - Thu, 21 Jan 2021 01:01:36 GMT expires: - '-1' odata-version: @@ -18848,17 +19325,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18866,7 +19343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:02 GMT + - Thu, 21 Jan 2021 01:01:38 GMT expires: - '-1' odata-version: @@ -18901,17 +19378,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18919,7 +19396,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:04 GMT + - Thu, 21 Jan 2021 01:01:40 GMT expires: - '-1' odata-version: @@ -18954,17 +19431,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18972,7 +19449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:06 GMT + - Thu, 21 Jan 2021 01:01:42 GMT expires: - '-1' odata-version: @@ -19007,17 +19484,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19025,7 +19502,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:08 GMT + - Thu, 21 Jan 2021 01:01:45 GMT expires: - '-1' odata-version: @@ -19060,17 +19537,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19078,7 +19555,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:11 GMT + - Thu, 21 Jan 2021 01:01:47 GMT expires: - '-1' odata-version: @@ -19113,17 +19590,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19131,7 +19608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:13 GMT + - Thu, 21 Jan 2021 01:01:49 GMT expires: - '-1' odata-version: @@ -19166,17 +19643,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19184,7 +19661,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:15 GMT + - Thu, 21 Jan 2021 01:01:51 GMT expires: - '-1' odata-version: @@ -19219,17 +19696,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19237,7 +19714,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:17 GMT + - Thu, 21 Jan 2021 01:01:53 GMT expires: - '-1' odata-version: @@ -19272,17 +19749,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19290,7 +19767,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:19 GMT + - Thu, 21 Jan 2021 01:01:55 GMT expires: - '-1' odata-version: @@ -19325,17 +19802,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19343,7 +19820,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:21 GMT + - Thu, 21 Jan 2021 01:01:57 GMT expires: - '-1' odata-version: @@ -19378,17 +19855,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19396,7 +19873,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:23 GMT + - Thu, 21 Jan 2021 01:01:59 GMT expires: - '-1' odata-version: @@ -19431,17 +19908,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19449,7 +19926,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:26 GMT + - Thu, 21 Jan 2021 01:02:01 GMT expires: - '-1' odata-version: @@ -19484,17 +19961,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19502,7 +19979,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:28 GMT + - Thu, 21 Jan 2021 01:02:03 GMT expires: - '-1' odata-version: @@ -19537,17 +20014,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19555,7 +20032,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:31 GMT + - Thu, 21 Jan 2021 01:02:05 GMT expires: - '-1' odata-version: @@ -19590,17 +20067,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19608,7 +20085,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:33 GMT + - Thu, 21 Jan 2021 01:02:08 GMT expires: - '-1' odata-version: @@ -19643,17 +20120,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19661,7 +20138,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:35 GMT + - Thu, 21 Jan 2021 01:02:10 GMT expires: - '-1' odata-version: @@ -19696,17 +20173,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19714,7 +20191,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:37 GMT + - Thu, 21 Jan 2021 01:02:12 GMT expires: - '-1' odata-version: @@ -19749,17 +20226,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19767,7 +20244,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:39 GMT + - Thu, 21 Jan 2021 01:02:14 GMT expires: - '-1' odata-version: @@ -19802,17 +20279,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19820,7 +20297,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:41 GMT + - Thu, 21 Jan 2021 01:02:16 GMT expires: - '-1' odata-version: @@ -19855,17 +20332,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19873,7 +20350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:43 GMT + - Thu, 21 Jan 2021 01:02:18 GMT expires: - '-1' odata-version: @@ -19908,17 +20385,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19926,7 +20403,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:45 GMT + - Thu, 21 Jan 2021 01:02:21 GMT expires: - '-1' odata-version: @@ -19961,17 +20438,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19979,7 +20456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:48 GMT + - Thu, 21 Jan 2021 01:02:23 GMT expires: - '-1' odata-version: @@ -20014,17 +20491,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20032,7 +20509,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:50 GMT + - Thu, 21 Jan 2021 01:02:25 GMT expires: - '-1' odata-version: @@ -20067,17 +20544,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20085,7 +20562,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:52 GMT + - Thu, 21 Jan 2021 01:02:27 GMT expires: - '-1' odata-version: @@ -20120,17 +20597,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20138,7 +20615,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:54 GMT + - Thu, 21 Jan 2021 01:02:29 GMT expires: - '-1' odata-version: @@ -20173,17 +20650,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20191,7 +20668,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:56 GMT + - Thu, 21 Jan 2021 01:02:31 GMT expires: - '-1' odata-version: @@ -20226,17 +20703,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20244,7 +20721,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:58 GMT + - Thu, 21 Jan 2021 01:02:34 GMT expires: - '-1' odata-version: @@ -20279,17 +20756,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20297,7 +20774,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:00 GMT + - Thu, 21 Jan 2021 01:02:36 GMT expires: - '-1' odata-version: @@ -20332,17 +20809,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20350,7 +20827,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:02 GMT + - Thu, 21 Jan 2021 01:02:38 GMT expires: - '-1' odata-version: @@ -20385,17 +20862,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20403,7 +20880,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:05 GMT + - Thu, 21 Jan 2021 01:02:40 GMT expires: - '-1' odata-version: @@ -20438,17 +20915,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20456,7 +20933,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:07 GMT + - Thu, 21 Jan 2021 01:02:42 GMT expires: - '-1' odata-version: @@ -20491,17 +20968,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20509,7 +20986,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:09 GMT + - Thu, 21 Jan 2021 01:02:44 GMT expires: - '-1' odata-version: @@ -20544,17 +21021,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20562,7 +21039,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:11 GMT + - Thu, 21 Jan 2021 01:02:46 GMT expires: - '-1' odata-version: @@ -20597,17 +21074,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20615,7 +21092,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:13 GMT + - Thu, 21 Jan 2021 01:02:48 GMT expires: - '-1' odata-version: @@ -20650,17 +21127,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20668,7 +21145,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:15 GMT + - Thu, 21 Jan 2021 01:02:50 GMT expires: - '-1' odata-version: @@ -20703,17 +21180,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20721,7 +21198,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:17 GMT + - Thu, 21 Jan 2021 01:02:52 GMT expires: - '-1' odata-version: @@ -20756,17 +21233,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20774,7 +21251,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:19 GMT + - Thu, 21 Jan 2021 01:02:54 GMT expires: - '-1' odata-version: @@ -20809,17 +21286,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20827,7 +21304,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:22 GMT + - Thu, 21 Jan 2021 01:02:57 GMT expires: - '-1' odata-version: @@ -20862,17 +21339,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20880,7 +21357,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:24 GMT + - Thu, 21 Jan 2021 01:02:59 GMT expires: - '-1' odata-version: @@ -20915,17 +21392,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20933,7 +21410,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:26 GMT + - Thu, 21 Jan 2021 01:03:01 GMT expires: - '-1' odata-version: @@ -20968,17 +21445,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20986,7 +21463,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:28 GMT + - Thu, 21 Jan 2021 01:03:03 GMT expires: - '-1' odata-version: @@ -21021,17 +21498,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21039,7 +21516,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:30 GMT + - Thu, 21 Jan 2021 01:03:05 GMT expires: - '-1' odata-version: @@ -21074,17 +21551,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21092,7 +21569,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:32 GMT + - Thu, 21 Jan 2021 01:03:07 GMT expires: - '-1' odata-version: @@ -21127,17 +21604,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21145,7 +21622,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:35 GMT + - Thu, 21 Jan 2021 01:03:09 GMT expires: - '-1' odata-version: @@ -21180,17 +21657,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21198,7 +21675,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:37 GMT + - Thu, 21 Jan 2021 01:03:11 GMT expires: - '-1' odata-version: @@ -21233,17 +21710,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21251,7 +21728,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:39 GMT + - Thu, 21 Jan 2021 01:03:13 GMT expires: - '-1' odata-version: @@ -21286,17 +21763,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21304,7 +21781,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:41 GMT + - Thu, 21 Jan 2021 01:03:15 GMT expires: - '-1' odata-version: @@ -21339,17 +21816,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21357,7 +21834,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:43 GMT + - Thu, 21 Jan 2021 01:03:18 GMT expires: - '-1' odata-version: @@ -21392,17 +21869,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21410,7 +21887,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:45 GMT + - Thu, 21 Jan 2021 01:03:20 GMT expires: - '-1' odata-version: @@ -21445,17 +21922,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21463,7 +21940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:47 GMT + - Thu, 21 Jan 2021 01:03:22 GMT expires: - '-1' odata-version: @@ -21498,17 +21975,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21516,7 +21993,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:49 GMT + - Thu, 21 Jan 2021 01:03:24 GMT expires: - '-1' odata-version: @@ -21551,17 +22028,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21569,7 +22046,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:52 GMT + - Thu, 21 Jan 2021 01:03:26 GMT expires: - '-1' odata-version: @@ -21604,17 +22081,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21622,7 +22099,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:54 GMT + - Thu, 21 Jan 2021 01:03:28 GMT expires: - '-1' odata-version: @@ -21657,17 +22134,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21675,7 +22152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:56 GMT + - Thu, 21 Jan 2021 01:03:30 GMT expires: - '-1' odata-version: @@ -21710,17 +22187,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21728,7 +22205,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:58 GMT + - Thu, 21 Jan 2021 01:03:32 GMT expires: - '-1' odata-version: @@ -21763,17 +22240,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21781,7 +22258,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:00 GMT + - Thu, 21 Jan 2021 01:03:34 GMT expires: - '-1' odata-version: @@ -21816,17 +22293,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21834,7 +22311,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:02 GMT + - Thu, 21 Jan 2021 01:03:36 GMT expires: - '-1' odata-version: @@ -21869,17 +22346,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21887,7 +22364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:04 GMT + - Thu, 21 Jan 2021 01:03:40 GMT expires: - '-1' odata-version: @@ -21922,17 +22399,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21940,7 +22417,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:06 GMT + - Thu, 21 Jan 2021 01:03:42 GMT expires: - '-1' odata-version: @@ -21975,17 +22452,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21993,7 +22470,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:08 GMT + - Thu, 21 Jan 2021 01:03:44 GMT expires: - '-1' odata-version: @@ -22028,17 +22505,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22046,7 +22523,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:11 GMT + - Thu, 21 Jan 2021 01:03:46 GMT expires: - '-1' odata-version: @@ -22081,17 +22558,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22099,7 +22576,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:13 GMT + - Thu, 21 Jan 2021 01:03:48 GMT expires: - '-1' odata-version: @@ -22134,17 +22611,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22152,7 +22629,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:15 GMT + - Thu, 21 Jan 2021 01:03:50 GMT expires: - '-1' odata-version: @@ -22187,17 +22664,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22205,7 +22682,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:17 GMT + - Thu, 21 Jan 2021 01:03:52 GMT expires: - '-1' odata-version: @@ -22240,17 +22717,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22258,7 +22735,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:19 GMT + - Thu, 21 Jan 2021 01:03:54 GMT expires: - '-1' odata-version: @@ -22293,17 +22770,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22311,7 +22788,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:21 GMT + - Thu, 21 Jan 2021 01:03:56 GMT expires: - '-1' odata-version: @@ -22346,17 +22823,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22364,7 +22841,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:23 GMT + - Thu, 21 Jan 2021 01:03:58 GMT expires: - '-1' odata-version: @@ -22399,17 +22876,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22417,7 +22894,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:26 GMT + - Thu, 21 Jan 2021 01:04:01 GMT expires: - '-1' odata-version: @@ -22452,17 +22929,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22470,7 +22947,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:28 GMT + - Thu, 21 Jan 2021 01:04:03 GMT expires: - '-1' odata-version: @@ -22505,17 +22982,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22523,7 +23000,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:31 GMT + - Thu, 21 Jan 2021 01:04:05 GMT expires: - '-1' odata-version: @@ -22558,17 +23035,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22576,7 +23053,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:33 GMT + - Thu, 21 Jan 2021 01:04:07 GMT expires: - '-1' odata-version: @@ -22611,17 +23088,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22629,7 +23106,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:35 GMT + - Thu, 21 Jan 2021 01:04:09 GMT expires: - '-1' odata-version: @@ -22664,17 +23141,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22682,7 +23159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:37 GMT + - Thu, 21 Jan 2021 01:04:11 GMT expires: - '-1' odata-version: @@ -22717,17 +23194,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22735,7 +23212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:39 GMT + - Thu, 21 Jan 2021 01:04:13 GMT expires: - '-1' odata-version: @@ -22770,17 +23247,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22788,7 +23265,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:41 GMT + - Thu, 21 Jan 2021 01:04:15 GMT expires: - '-1' odata-version: @@ -22823,17 +23300,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22841,7 +23318,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:43 GMT + - Thu, 21 Jan 2021 01:04:17 GMT expires: - '-1' odata-version: @@ -22876,17 +23353,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22894,7 +23371,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:45 GMT + - Thu, 21 Jan 2021 01:04:19 GMT expires: - '-1' odata-version: @@ -22929,17 +23406,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22947,7 +23424,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:47 GMT + - Thu, 21 Jan 2021 01:04:22 GMT expires: - '-1' odata-version: @@ -22982,17 +23459,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23000,7 +23477,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:50 GMT + - Thu, 21 Jan 2021 01:04:24 GMT expires: - '-1' odata-version: @@ -23035,17 +23512,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23053,7 +23530,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:52 GMT + - Thu, 21 Jan 2021 01:04:26 GMT expires: - '-1' odata-version: @@ -23088,17 +23565,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23106,7 +23583,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:54 GMT + - Thu, 21 Jan 2021 01:04:28 GMT expires: - '-1' odata-version: @@ -23141,17 +23618,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23159,7 +23636,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:56 GMT + - Thu, 21 Jan 2021 01:04:30 GMT expires: - '-1' odata-version: @@ -23194,17 +23671,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23212,7 +23689,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:58 GMT + - Thu, 21 Jan 2021 01:04:32 GMT expires: - '-1' odata-version: @@ -23247,17 +23724,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23265,7 +23742,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:00 GMT + - Thu, 21 Jan 2021 01:04:34 GMT expires: - '-1' odata-version: @@ -23300,17 +23777,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23318,7 +23795,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:02 GMT + - Thu, 21 Jan 2021 01:04:36 GMT expires: - '-1' odata-version: @@ -23353,17 +23830,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23371,7 +23848,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:04 GMT + - Thu, 21 Jan 2021 01:04:38 GMT expires: - '-1' odata-version: @@ -23406,17 +23883,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23424,7 +23901,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:06 GMT + - Thu, 21 Jan 2021 01:04:40 GMT expires: - '-1' odata-version: @@ -23459,17 +23936,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23477,7 +23954,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:09 GMT + - Thu, 21 Jan 2021 01:04:42 GMT expires: - '-1' odata-version: @@ -23512,17 +23989,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23530,7 +24007,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:11 GMT + - Thu, 21 Jan 2021 01:04:44 GMT expires: - '-1' odata-version: @@ -23565,17 +24042,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23583,7 +24060,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:13 GMT + - Thu, 21 Jan 2021 01:04:46 GMT expires: - '-1' odata-version: @@ -23618,17 +24095,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23636,7 +24113,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:15 GMT + - Thu, 21 Jan 2021 01:04:49 GMT expires: - '-1' odata-version: @@ -23671,17 +24148,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23689,7 +24166,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:17 GMT + - Thu, 21 Jan 2021 01:04:51 GMT expires: - '-1' odata-version: @@ -23724,17 +24201,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23742,7 +24219,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:19 GMT + - Thu, 21 Jan 2021 01:04:53 GMT expires: - '-1' odata-version: @@ -23777,17 +24254,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23795,7 +24272,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:21 GMT + - Thu, 21 Jan 2021 01:04:55 GMT expires: - '-1' odata-version: @@ -23830,17 +24307,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23848,7 +24325,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:23 GMT + - Thu, 21 Jan 2021 01:04:57 GMT expires: - '-1' odata-version: @@ -23883,17 +24360,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23901,7 +24378,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:26 GMT + - Thu, 21 Jan 2021 01:04:59 GMT expires: - '-1' odata-version: @@ -23936,17 +24413,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23954,7 +24431,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:28 GMT + - Thu, 21 Jan 2021 01:05:01 GMT expires: - '-1' odata-version: @@ -23989,17 +24466,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24007,7 +24484,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:30 GMT + - Thu, 21 Jan 2021 01:05:04 GMT expires: - '-1' odata-version: @@ -24042,17 +24519,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24060,7 +24537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:32 GMT + - Thu, 21 Jan 2021 01:05:06 GMT expires: - '-1' odata-version: @@ -24095,17 +24572,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24113,7 +24590,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:34 GMT + - Thu, 21 Jan 2021 01:05:09 GMT expires: - '-1' odata-version: @@ -24148,17 +24625,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24166,7 +24643,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:36 GMT + - Thu, 21 Jan 2021 01:05:11 GMT expires: - '-1' odata-version: @@ -24201,17 +24678,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24219,7 +24696,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:38 GMT + - Thu, 21 Jan 2021 01:05:13 GMT expires: - '-1' odata-version: @@ -24254,17 +24731,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24272,7 +24749,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:40 GMT + - Thu, 21 Jan 2021 01:05:15 GMT expires: - '-1' odata-version: @@ -24307,17 +24784,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24325,7 +24802,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:42 GMT + - Thu, 21 Jan 2021 01:05:17 GMT expires: - '-1' odata-version: @@ -24360,17 +24837,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24378,7 +24855,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:45 GMT + - Thu, 21 Jan 2021 01:05:19 GMT expires: - '-1' odata-version: @@ -24413,17 +24890,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24431,7 +24908,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:47 GMT + - Thu, 21 Jan 2021 01:05:21 GMT expires: - '-1' odata-version: @@ -24466,17 +24943,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24484,7 +24961,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:49 GMT + - Thu, 21 Jan 2021 01:05:23 GMT expires: - '-1' odata-version: @@ -24519,17 +24996,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24537,7 +25014,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:51 GMT + - Thu, 21 Jan 2021 01:05:25 GMT expires: - '-1' odata-version: @@ -24572,17 +25049,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24590,7 +25067,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:53 GMT + - Thu, 21 Jan 2021 01:05:28 GMT expires: - '-1' odata-version: @@ -24625,17 +25102,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24643,7 +25120,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:55 GMT + - Thu, 21 Jan 2021 01:05:30 GMT expires: - '-1' odata-version: @@ -24678,17 +25155,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24696,7 +25173,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:57 GMT + - Thu, 21 Jan 2021 01:05:32 GMT expires: - '-1' odata-version: @@ -24731,17 +25208,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24749,7 +25226,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:59 GMT + - Thu, 21 Jan 2021 01:05:34 GMT expires: - '-1' odata-version: @@ -24784,17 +25261,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24802,7 +25279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:02 GMT + - Thu, 21 Jan 2021 01:05:36 GMT expires: - '-1' odata-version: @@ -24837,17 +25314,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24855,7 +25332,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:04 GMT + - Thu, 21 Jan 2021 01:05:38 GMT expires: - '-1' odata-version: @@ -24890,17 +25367,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24908,7 +25385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:06 GMT + - Thu, 21 Jan 2021 01:05:40 GMT expires: - '-1' odata-version: @@ -24943,17 +25420,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24961,7 +25438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:08 GMT + - Thu, 21 Jan 2021 01:05:42 GMT expires: - '-1' odata-version: @@ -24996,17 +25473,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25014,7 +25491,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:10 GMT + - Thu, 21 Jan 2021 01:05:44 GMT expires: - '-1' odata-version: @@ -25049,17 +25526,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25067,7 +25544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:12 GMT + - Thu, 21 Jan 2021 01:05:46 GMT expires: - '-1' odata-version: @@ -25102,17 +25579,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25120,7 +25597,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:15 GMT + - Thu, 21 Jan 2021 01:05:48 GMT expires: - '-1' odata-version: @@ -25155,17 +25632,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25173,7 +25650,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:17 GMT + - Thu, 21 Jan 2021 01:05:51 GMT expires: - '-1' odata-version: @@ -25208,17 +25685,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25226,7 +25703,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:20 GMT + - Thu, 21 Jan 2021 01:05:53 GMT expires: - '-1' odata-version: @@ -25261,17 +25738,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25279,7 +25756,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:22 GMT + - Thu, 21 Jan 2021 01:05:55 GMT expires: - '-1' odata-version: @@ -25314,17 +25791,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25332,7 +25809,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:24 GMT + - Thu, 21 Jan 2021 01:05:57 GMT expires: - '-1' odata-version: @@ -25367,17 +25844,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25385,7 +25862,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:26 GMT + - Thu, 21 Jan 2021 01:05:59 GMT expires: - '-1' odata-version: @@ -25420,17 +25897,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25438,7 +25915,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:28 GMT + - Thu, 21 Jan 2021 01:06:01 GMT expires: - '-1' odata-version: @@ -25473,17 +25950,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25491,7 +25968,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:30 GMT + - Thu, 21 Jan 2021 01:06:03 GMT expires: - '-1' odata-version: @@ -25526,17 +26003,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25544,7 +26021,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:32 GMT + - Thu, 21 Jan 2021 01:06:05 GMT expires: - '-1' odata-version: @@ -25579,17 +26056,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25597,7 +26074,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:34 GMT + - Thu, 21 Jan 2021 01:06:07 GMT expires: - '-1' odata-version: @@ -25632,17 +26109,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25650,7 +26127,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:36 GMT + - Thu, 21 Jan 2021 01:06:10 GMT expires: - '-1' odata-version: @@ -25685,17 +26162,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25703,7 +26180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:39 GMT + - Thu, 21 Jan 2021 01:06:12 GMT expires: - '-1' odata-version: @@ -25738,17 +26215,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25756,7 +26233,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:41 GMT + - Thu, 21 Jan 2021 01:06:14 GMT expires: - '-1' odata-version: @@ -25791,17 +26268,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25809,7 +26286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:43 GMT + - Thu, 21 Jan 2021 01:06:16 GMT expires: - '-1' odata-version: @@ -25844,17 +26321,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25862,7 +26339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:45 GMT + - Thu, 21 Jan 2021 01:06:18 GMT expires: - '-1' odata-version: @@ -25897,17 +26374,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25915,7 +26392,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:47 GMT + - Thu, 21 Jan 2021 01:06:20 GMT expires: - '-1' odata-version: @@ -25950,17 +26427,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25968,7 +26445,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:49 GMT + - Thu, 21 Jan 2021 01:06:22 GMT expires: - '-1' odata-version: @@ -26003,17 +26480,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26021,7 +26498,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:51 GMT + - Thu, 21 Jan 2021 01:06:24 GMT expires: - '-1' odata-version: @@ -26056,17 +26533,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26074,7 +26551,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:53 GMT + - Thu, 21 Jan 2021 01:06:26 GMT expires: - '-1' odata-version: @@ -26109,17 +26586,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26127,7 +26604,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:56 GMT + - Thu, 21 Jan 2021 01:06:28 GMT expires: - '-1' odata-version: @@ -26162,17 +26639,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26180,7 +26657,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:58 GMT + - Thu, 21 Jan 2021 01:06:30 GMT expires: - '-1' odata-version: @@ -26215,17 +26692,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26233,7 +26710,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:00 GMT + - Thu, 21 Jan 2021 01:06:32 GMT expires: - '-1' odata-version: @@ -26268,17 +26745,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26286,7 +26763,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:02 GMT + - Thu, 21 Jan 2021 01:06:36 GMT expires: - '-1' odata-version: @@ -26321,17 +26798,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26339,7 +26816,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:04 GMT + - Thu, 21 Jan 2021 01:06:38 GMT expires: - '-1' odata-version: @@ -26374,17 +26851,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26392,7 +26869,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:06 GMT + - Thu, 21 Jan 2021 01:06:40 GMT expires: - '-1' odata-version: @@ -26427,17 +26904,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26445,7 +26922,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:08 GMT + - Thu, 21 Jan 2021 01:06:42 GMT expires: - '-1' odata-version: @@ -26480,17 +26957,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26498,7 +26975,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:10 GMT + - Thu, 21 Jan 2021 01:06:44 GMT expires: - '-1' odata-version: @@ -26533,17 +27010,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26551,7 +27028,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:13 GMT + - Thu, 21 Jan 2021 01:06:46 GMT expires: - '-1' odata-version: @@ -26586,17 +27063,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26604,7 +27081,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:15 GMT + - Thu, 21 Jan 2021 01:06:48 GMT expires: - '-1' odata-version: @@ -26639,17 +27116,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26657,7 +27134,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:17 GMT + - Thu, 21 Jan 2021 01:06:50 GMT expires: - '-1' odata-version: @@ -26692,17 +27169,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26710,7 +27187,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:19 GMT + - Thu, 21 Jan 2021 01:06:52 GMT expires: - '-1' odata-version: @@ -26745,17 +27222,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26763,7 +27240,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:21 GMT + - Thu, 21 Jan 2021 01:06:54 GMT expires: - '-1' odata-version: @@ -26798,17 +27275,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26816,7 +27293,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:23 GMT + - Thu, 21 Jan 2021 01:06:56 GMT expires: - '-1' odata-version: @@ -26851,17 +27328,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26869,7 +27346,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:25 GMT + - Thu, 21 Jan 2021 01:06:59 GMT expires: - '-1' odata-version: @@ -26904,17 +27381,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26922,7 +27399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:27 GMT + - Thu, 21 Jan 2021 01:07:01 GMT expires: - '-1' odata-version: @@ -26957,17 +27434,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26975,7 +27452,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:30 GMT + - Thu, 21 Jan 2021 01:07:03 GMT expires: - '-1' odata-version: @@ -27010,17 +27487,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27028,7 +27505,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:32 GMT + - Thu, 21 Jan 2021 01:07:05 GMT expires: - '-1' odata-version: @@ -27063,17 +27540,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27081,7 +27558,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:34 GMT + - Thu, 21 Jan 2021 01:07:07 GMT expires: - '-1' odata-version: @@ -27116,17 +27593,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27134,7 +27611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:36 GMT + - Thu, 21 Jan 2021 01:07:09 GMT expires: - '-1' odata-version: @@ -27169,17 +27646,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27187,7 +27664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:38 GMT + - Thu, 21 Jan 2021 01:07:11 GMT expires: - '-1' odata-version: @@ -27222,17 +27699,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27240,7 +27717,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:40 GMT + - Thu, 21 Jan 2021 01:07:13 GMT expires: - '-1' odata-version: @@ -27275,17 +27752,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27293,7 +27770,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:42 GMT + - Thu, 21 Jan 2021 01:07:15 GMT expires: - '-1' odata-version: @@ -27328,17 +27805,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27346,7 +27823,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:44 GMT + - Thu, 21 Jan 2021 01:07:17 GMT expires: - '-1' odata-version: @@ -27381,17 +27858,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27399,7 +27876,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:47 GMT + - Thu, 21 Jan 2021 01:07:19 GMT expires: - '-1' odata-version: @@ -27434,17 +27911,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27452,7 +27929,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:49 GMT + - Thu, 21 Jan 2021 01:07:22 GMT expires: - '-1' odata-version: @@ -27487,17 +27964,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27505,7 +27982,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:51 GMT + - Thu, 21 Jan 2021 01:07:24 GMT expires: - '-1' odata-version: @@ -27540,17 +28017,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27558,7 +28035,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:53 GMT + - Thu, 21 Jan 2021 01:07:26 GMT expires: - '-1' odata-version: @@ -27593,17 +28070,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27611,7 +28088,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:55 GMT + - Thu, 21 Jan 2021 01:07:28 GMT expires: - '-1' odata-version: @@ -27646,17 +28123,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27664,7 +28141,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:57 GMT + - Thu, 21 Jan 2021 01:07:30 GMT expires: - '-1' odata-version: @@ -27699,17 +28176,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27717,7 +28194,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:59 GMT + - Thu, 21 Jan 2021 01:07:32 GMT expires: - '-1' odata-version: @@ -27752,17 +28229,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27770,7 +28247,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:01 GMT + - Thu, 21 Jan 2021 01:07:34 GMT expires: - '-1' odata-version: @@ -27805,17 +28282,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27823,7 +28300,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:04 GMT + - Thu, 21 Jan 2021 01:07:36 GMT expires: - '-1' odata-version: @@ -27858,17 +28335,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27876,7 +28353,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:06 GMT + - Thu, 21 Jan 2021 01:07:38 GMT expires: - '-1' odata-version: @@ -27911,17 +28388,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27929,7 +28406,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:08 GMT + - Thu, 21 Jan 2021 01:07:40 GMT expires: - '-1' odata-version: @@ -27964,17 +28441,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27982,7 +28459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:10 GMT + - Thu, 21 Jan 2021 01:07:42 GMT expires: - '-1' odata-version: @@ -28017,17 +28494,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28035,7 +28512,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:12 GMT + - Thu, 21 Jan 2021 01:07:44 GMT expires: - '-1' odata-version: @@ -28070,17 +28547,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28088,7 +28565,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:15 GMT + - Thu, 21 Jan 2021 01:07:47 GMT expires: - '-1' odata-version: @@ -28123,17 +28600,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28141,7 +28618,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:17 GMT + - Thu, 21 Jan 2021 01:07:49 GMT expires: - '-1' odata-version: @@ -28176,17 +28653,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28194,7 +28671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:19 GMT + - Thu, 21 Jan 2021 01:07:51 GMT expires: - '-1' odata-version: @@ -28229,17 +28706,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28247,7 +28724,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:21 GMT + - Thu, 21 Jan 2021 01:07:54 GMT expires: - '-1' odata-version: @@ -28282,17 +28759,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28300,7 +28777,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:23 GMT + - Thu, 21 Jan 2021 01:07:56 GMT expires: - '-1' odata-version: @@ -28335,17 +28812,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28353,7 +28830,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:25 GMT + - Thu, 21 Jan 2021 01:07:58 GMT expires: - '-1' odata-version: @@ -28388,17 +28865,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28406,7 +28883,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:27 GMT + - Thu, 21 Jan 2021 01:08:00 GMT expires: - '-1' odata-version: @@ -28441,17 +28918,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28459,7 +28936,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:29 GMT + - Thu, 21 Jan 2021 01:08:02 GMT expires: - '-1' odata-version: @@ -28494,17 +28971,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28512,7 +28989,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:32 GMT + - Thu, 21 Jan 2021 01:08:04 GMT expires: - '-1' odata-version: @@ -28547,17 +29024,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28565,7 +29042,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:34 GMT + - Thu, 21 Jan 2021 01:08:06 GMT expires: - '-1' odata-version: @@ -28600,17 +29077,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28618,7 +29095,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:36 GMT + - Thu, 21 Jan 2021 01:08:08 GMT expires: - '-1' odata-version: @@ -28653,17 +29130,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28671,7 +29148,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:38 GMT + - Thu, 21 Jan 2021 01:08:11 GMT expires: - '-1' odata-version: @@ -28706,17 +29183,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28724,7 +29201,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:40 GMT + - Thu, 21 Jan 2021 01:08:13 GMT expires: - '-1' odata-version: @@ -28759,17 +29236,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28777,7 +29254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:42 GMT + - Thu, 21 Jan 2021 01:08:15 GMT expires: - '-1' odata-version: @@ -28812,17 +29289,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28830,7 +29307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:44 GMT + - Thu, 21 Jan 2021 01:08:17 GMT expires: - '-1' odata-version: @@ -28865,17 +29342,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28883,7 +29360,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:46 GMT + - Thu, 21 Jan 2021 01:08:19 GMT expires: - '-1' odata-version: @@ -28918,17 +29395,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28936,7 +29413,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:49 GMT + - Thu, 21 Jan 2021 01:08:21 GMT expires: - '-1' odata-version: @@ -28971,17 +29448,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28989,7 +29466,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:51 GMT + - Thu, 21 Jan 2021 01:08:23 GMT expires: - '-1' odata-version: @@ -29024,17 +29501,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29042,7 +29519,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:54 GMT + - Thu, 21 Jan 2021 01:08:25 GMT expires: - '-1' odata-version: @@ -29077,17 +29554,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29095,7 +29572,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:56 GMT + - Thu, 21 Jan 2021 01:08:27 GMT expires: - '-1' odata-version: @@ -29130,17 +29607,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c10a605-3eec-4e15-9b4a-cac201b5a130\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/1c10a605-3eec-4e15-9b4a-cac201b5a130?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29148,7 +29625,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:58 GMT + - Thu, 21 Jan 2021 01:08:29 GMT expires: - '-1' odata-version: @@ -29183,24 +29660,24 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:26.020678Z\",\"lastModified\":\"2021-01-13T01:43:58.3071042Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-21T00:48:52.9252316Z\",\"lastModified\":\"2021-01-21T01:08:28.2322144Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '864' + - '865' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:58 GMT + - Thu, 21 Jan 2021 01:08:30 GMT expires: - '-1' odata-version: @@ -29237,7 +29714,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -29247,17 +29724,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:43:58 GMT + - Thu, 21 Jan 2021 01:08:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 pragma: - no-cache server: @@ -29286,17 +29763,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"399be3f3-216c-479b-a5a1-ceee88767e4f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"00be7ae1-11d4-4d15-b920-daa00a2171e4\"\r\n + string: "{\r\n \"name\":\"e02d91e7-ad99-47dd-b82b-8ff9352fb491\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/399be3f3-216c-479b-a5a1-ceee88767e4f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29304,7 +29781,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:02 GMT + - Thu, 21 Jan 2021 01:08:34 GMT expires: - '-1' odata-version: @@ -29339,7 +29816,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -29348,17 +29825,17 @@ interactions: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":13,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:26.020678Z\",\"lastModified\":\"2021-01-13T01:44:01.7778263Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-usea.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:48:52.9252316Z\",\"lastModified\":\"2021-01-21T01:08:33.5967747Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '864' + - '865' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:03 GMT + - Thu, 21 Jan 2021 01:08:35 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml index 50ce1ee3957..2ab0096da61 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_stop_async.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"22f46e29-d5e7-4a67-a5fb-0edddbde99c7\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"3b18d0d3-370b-476a-893a-64267d0550e3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:21 GMT + - Thu, 21 Jan 2021 00:45:38 GMT expires: - '-1' odata-version: @@ -73,7 +73,7 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"22f46e29-d5e7-4a67-a5fb-0edddbde99c7\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"3b18d0d3-370b-476a-893a-64267d0550e3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:22 GMT + - Thu, 21 Jan 2021 00:45:38 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,11 +145,11 @@ interactions: US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"akamai\":null,\"ip\":null\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n - \ },\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:23.3083605Z\",\"lastModified\":\"2021-01-13T01:24:23.3083605Z\"\r\n + \ },\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:45:40.3480912Z\",\"lastModified\":\"2021-01-21T00:45:40.3480912Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -157,11 +157,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:23 GMT + - Thu, 21 Jan 2021 00:45:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -173,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -192,17 +192,2031 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:49 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:51 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:45:59 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:01 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:03 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:05 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:08 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:12 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:14 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:16 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:18 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:20 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:22 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:24 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:28 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:30 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:32 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:34 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:36 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:38 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:40 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:42 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:46 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:49 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:51 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:55 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:57 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:46:59 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:47:01 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams streaming-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -210,7 +2224,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:25 GMT + - Thu, 21 Jan 2021 00:47:03 GMT expires: - '-1' odata-version: @@ -245,17 +2259,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -263,7 +2277,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:27 GMT + - Thu, 21 Jan 2021 00:47:05 GMT expires: - '-1' odata-version: @@ -298,17 +2312,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -316,7 +2330,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:29 GMT + - Thu, 21 Jan 2021 00:47:08 GMT expires: - '-1' odata-version: @@ -351,17 +2365,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -369,7 +2383,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:31 GMT + - Thu, 21 Jan 2021 00:47:10 GMT expires: - '-1' odata-version: @@ -404,17 +2418,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -422,7 +2436,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:34 GMT + - Thu, 21 Jan 2021 00:47:12 GMT expires: - '-1' odata-version: @@ -457,17 +2471,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -475,7 +2489,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:36 GMT + - Thu, 21 Jan 2021 00:47:14 GMT expires: - '-1' odata-version: @@ -510,17 +2524,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -528,7 +2542,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:38 GMT + - Thu, 21 Jan 2021 00:47:16 GMT expires: - '-1' odata-version: @@ -563,17 +2577,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -581,7 +2595,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:40 GMT + - Thu, 21 Jan 2021 00:47:18 GMT expires: - '-1' odata-version: @@ -616,17 +2630,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -634,7 +2648,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:42 GMT + - Thu, 21 Jan 2021 00:47:20 GMT expires: - '-1' odata-version: @@ -669,17 +2683,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -687,7 +2701,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:44 GMT + - Thu, 21 Jan 2021 00:47:22 GMT expires: - '-1' odata-version: @@ -722,17 +2736,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -740,7 +2754,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:46 GMT + - Thu, 21 Jan 2021 00:47:24 GMT expires: - '-1' odata-version: @@ -775,17 +2789,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -793,7 +2807,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:48 GMT + - Thu, 21 Jan 2021 00:47:27 GMT expires: - '-1' odata-version: @@ -828,17 +2842,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -846,7 +2860,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:50 GMT + - Thu, 21 Jan 2021 00:47:29 GMT expires: - '-1' odata-version: @@ -881,17 +2895,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -899,7 +2913,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:53 GMT + - Thu, 21 Jan 2021 00:47:31 GMT expires: - '-1' odata-version: @@ -934,17 +2948,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -952,7 +2966,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:55 GMT + - Thu, 21 Jan 2021 00:47:33 GMT expires: - '-1' odata-version: @@ -987,17 +3001,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1005,7 +3019,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:57 GMT + - Thu, 21 Jan 2021 00:47:35 GMT expires: - '-1' odata-version: @@ -1040,17 +3054,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1058,7 +3072,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:59 GMT + - Thu, 21 Jan 2021 00:47:37 GMT expires: - '-1' odata-version: @@ -1093,17 +3107,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1111,7 +3125,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:01 GMT + - Thu, 21 Jan 2021 00:47:39 GMT expires: - '-1' odata-version: @@ -1146,17 +3160,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1164,7 +3178,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:03 GMT + - Thu, 21 Jan 2021 00:47:41 GMT expires: - '-1' odata-version: @@ -1199,17 +3213,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1217,7 +3231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:05 GMT + - Thu, 21 Jan 2021 00:47:43 GMT expires: - '-1' odata-version: @@ -1252,17 +3266,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1270,7 +3284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:07 GMT + - Thu, 21 Jan 2021 00:47:46 GMT expires: - '-1' odata-version: @@ -1305,17 +3319,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1323,7 +3337,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:10 GMT + - Thu, 21 Jan 2021 00:47:48 GMT expires: - '-1' odata-version: @@ -1358,17 +3372,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1376,7 +3390,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:13 GMT + - Thu, 21 Jan 2021 00:47:50 GMT expires: - '-1' odata-version: @@ -1411,17 +3425,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1429,7 +3443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:15 GMT + - Thu, 21 Jan 2021 00:47:52 GMT expires: - '-1' odata-version: @@ -1464,17 +3478,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1482,7 +3496,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:17 GMT + - Thu, 21 Jan 2021 00:47:54 GMT expires: - '-1' odata-version: @@ -1517,17 +3531,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1535,7 +3549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:19 GMT + - Thu, 21 Jan 2021 00:47:56 GMT expires: - '-1' odata-version: @@ -1570,17 +3584,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1588,7 +3602,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:21 GMT + - Thu, 21 Jan 2021 00:47:58 GMT expires: - '-1' odata-version: @@ -1623,17 +3637,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1641,7 +3655,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:23 GMT + - Thu, 21 Jan 2021 00:48:00 GMT expires: - '-1' odata-version: @@ -1676,17 +3690,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1694,7 +3708,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:25 GMT + - Thu, 21 Jan 2021 00:48:03 GMT expires: - '-1' odata-version: @@ -1729,17 +3743,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1747,7 +3761,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:28 GMT + - Thu, 21 Jan 2021 00:48:05 GMT expires: - '-1' odata-version: @@ -1782,17 +3796,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1800,7 +3814,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:30 GMT + - Thu, 21 Jan 2021 00:48:07 GMT expires: - '-1' odata-version: @@ -1835,17 +3849,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1853,7 +3867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:32 GMT + - Thu, 21 Jan 2021 00:48:09 GMT expires: - '-1' odata-version: @@ -1888,17 +3902,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1906,7 +3920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:34 GMT + - Thu, 21 Jan 2021 00:48:11 GMT expires: - '-1' odata-version: @@ -1941,17 +3955,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1959,7 +3973,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:36 GMT + - Thu, 21 Jan 2021 00:48:13 GMT expires: - '-1' odata-version: @@ -1994,17 +4008,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2012,7 +4026,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:38 GMT + - Thu, 21 Jan 2021 00:48:15 GMT expires: - '-1' odata-version: @@ -2047,17 +4061,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2065,7 +4079,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:40 GMT + - Thu, 21 Jan 2021 00:48:17 GMT expires: - '-1' odata-version: @@ -2100,17 +4114,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2118,7 +4132,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:42 GMT + - Thu, 21 Jan 2021 00:48:19 GMT expires: - '-1' odata-version: @@ -2153,17 +4167,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2171,7 +4185,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:44 GMT + - Thu, 21 Jan 2021 00:48:22 GMT expires: - '-1' odata-version: @@ -2206,17 +4220,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2224,7 +4238,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:47 GMT + - Thu, 21 Jan 2021 00:48:24 GMT expires: - '-1' odata-version: @@ -2259,17 +4273,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2277,7 +4291,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:49 GMT + - Thu, 21 Jan 2021 00:48:26 GMT expires: - '-1' odata-version: @@ -2312,17 +4326,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2330,7 +4344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:51 GMT + - Thu, 21 Jan 2021 00:48:28 GMT expires: - '-1' odata-version: @@ -2365,17 +4379,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2383,7 +4397,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:53 GMT + - Thu, 21 Jan 2021 00:48:30 GMT expires: - '-1' odata-version: @@ -2418,17 +4432,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2436,7 +4450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:55 GMT + - Thu, 21 Jan 2021 00:48:32 GMT expires: - '-1' odata-version: @@ -2471,17 +4485,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2489,7 +4503,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:57 GMT + - Thu, 21 Jan 2021 00:48:34 GMT expires: - '-1' odata-version: @@ -2524,17 +4538,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2542,7 +4556,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:59 GMT + - Thu, 21 Jan 2021 00:48:36 GMT expires: - '-1' odata-version: @@ -2577,17 +4591,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2595,7 +4609,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:01 GMT + - Thu, 21 Jan 2021 00:48:38 GMT expires: - '-1' odata-version: @@ -2630,17 +4644,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2648,7 +4662,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:03 GMT + - Thu, 21 Jan 2021 00:48:41 GMT expires: - '-1' odata-version: @@ -2683,17 +4697,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2701,7 +4715,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:06 GMT + - Thu, 21 Jan 2021 00:48:43 GMT expires: - '-1' odata-version: @@ -2736,17 +4750,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2754,7 +4768,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:08 GMT + - Thu, 21 Jan 2021 00:48:45 GMT expires: - '-1' odata-version: @@ -2789,17 +4803,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2807,7 +4821,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:10 GMT + - Thu, 21 Jan 2021 00:48:47 GMT expires: - '-1' odata-version: @@ -2842,17 +4856,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2860,7 +4874,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:12 GMT + - Thu, 21 Jan 2021 00:48:49 GMT expires: - '-1' odata-version: @@ -2895,17 +4909,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2913,7 +4927,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:14 GMT + - Thu, 21 Jan 2021 00:48:51 GMT expires: - '-1' odata-version: @@ -2948,17 +4962,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2966,7 +4980,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:16 GMT + - Thu, 21 Jan 2021 00:48:53 GMT expires: - '-1' odata-version: @@ -3001,17 +5015,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3019,7 +5033,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:18 GMT + - Thu, 21 Jan 2021 00:48:55 GMT expires: - '-1' odata-version: @@ -3054,17 +5068,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3072,7 +5086,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:20 GMT + - Thu, 21 Jan 2021 00:48:57 GMT expires: - '-1' odata-version: @@ -3107,17 +5121,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3125,7 +5139,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:22 GMT + - Thu, 21 Jan 2021 00:49:01 GMT expires: - '-1' odata-version: @@ -3160,17 +5174,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3178,7 +5192,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:25 GMT + - Thu, 21 Jan 2021 00:49:03 GMT expires: - '-1' odata-version: @@ -3213,17 +5227,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3231,7 +5245,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:27 GMT + - Thu, 21 Jan 2021 00:49:05 GMT expires: - '-1' odata-version: @@ -3266,17 +5280,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3284,7 +5298,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:29 GMT + - Thu, 21 Jan 2021 00:49:07 GMT expires: - '-1' odata-version: @@ -3319,17 +5333,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3337,7 +5351,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:31 GMT + - Thu, 21 Jan 2021 00:49:09 GMT expires: - '-1' odata-version: @@ -3372,17 +5386,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3390,7 +5404,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:33 GMT + - Thu, 21 Jan 2021 00:49:11 GMT expires: - '-1' odata-version: @@ -3425,17 +5439,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3443,7 +5457,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:35 GMT + - Thu, 21 Jan 2021 00:49:13 GMT expires: - '-1' odata-version: @@ -3478,17 +5492,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3496,7 +5510,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:37 GMT + - Thu, 21 Jan 2021 00:49:15 GMT expires: - '-1' odata-version: @@ -3531,17 +5545,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3549,7 +5563,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:39 GMT + - Thu, 21 Jan 2021 00:49:17 GMT expires: - '-1' odata-version: @@ -3584,17 +5598,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3602,7 +5616,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:42 GMT + - Thu, 21 Jan 2021 00:49:19 GMT expires: - '-1' odata-version: @@ -3637,17 +5651,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3655,7 +5669,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:44 GMT + - Thu, 21 Jan 2021 00:49:21 GMT expires: - '-1' odata-version: @@ -3690,17 +5704,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3708,7 +5722,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:46 GMT + - Thu, 21 Jan 2021 00:49:24 GMT expires: - '-1' odata-version: @@ -3743,17 +5757,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3761,7 +5775,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:48 GMT + - Thu, 21 Jan 2021 00:49:26 GMT expires: - '-1' odata-version: @@ -3796,17 +5810,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3814,7 +5828,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:50 GMT + - Thu, 21 Jan 2021 00:49:28 GMT expires: - '-1' odata-version: @@ -3849,17 +5863,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3867,7 +5881,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:52 GMT + - Thu, 21 Jan 2021 00:49:30 GMT expires: - '-1' odata-version: @@ -3902,17 +5916,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3920,7 +5934,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:54 GMT + - Thu, 21 Jan 2021 00:49:32 GMT expires: - '-1' odata-version: @@ -3955,17 +5969,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3973,7 +5987,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:56 GMT + - Thu, 21 Jan 2021 00:49:35 GMT expires: - '-1' odata-version: @@ -4008,17 +6022,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4026,7 +6040,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:58 GMT + - Thu, 21 Jan 2021 00:49:37 GMT expires: - '-1' odata-version: @@ -4061,17 +6075,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4079,7 +6093,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:01 GMT + - Thu, 21 Jan 2021 00:49:39 GMT expires: - '-1' odata-version: @@ -4114,17 +6128,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4132,7 +6146,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:03 GMT + - Thu, 21 Jan 2021 00:49:41 GMT expires: - '-1' odata-version: @@ -4167,17 +6181,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4185,7 +6199,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:05 GMT + - Thu, 21 Jan 2021 00:49:43 GMT expires: - '-1' odata-version: @@ -4220,17 +6234,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4238,7 +6252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:07 GMT + - Thu, 21 Jan 2021 00:49:45 GMT expires: - '-1' odata-version: @@ -4273,17 +6287,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4291,7 +6305,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:09 GMT + - Thu, 21 Jan 2021 00:49:47 GMT expires: - '-1' odata-version: @@ -4326,17 +6340,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4344,7 +6358,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:11 GMT + - Thu, 21 Jan 2021 00:49:49 GMT expires: - '-1' odata-version: @@ -4379,17 +6393,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4397,7 +6411,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:13 GMT + - Thu, 21 Jan 2021 00:49:51 GMT expires: - '-1' odata-version: @@ -4432,17 +6446,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4450,7 +6464,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:15 GMT + - Thu, 21 Jan 2021 00:49:54 GMT expires: - '-1' odata-version: @@ -4485,17 +6499,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4503,7 +6517,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:18 GMT + - Thu, 21 Jan 2021 00:49:56 GMT expires: - '-1' odata-version: @@ -4538,17 +6552,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4556,7 +6570,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:20 GMT + - Thu, 21 Jan 2021 00:49:58 GMT expires: - '-1' odata-version: @@ -4591,17 +6605,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4609,7 +6623,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:22 GMT + - Thu, 21 Jan 2021 00:50:00 GMT expires: - '-1' odata-version: @@ -4644,17 +6658,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4662,7 +6676,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:24 GMT + - Thu, 21 Jan 2021 00:50:02 GMT expires: - '-1' odata-version: @@ -4697,17 +6711,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4715,7 +6729,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:26 GMT + - Thu, 21 Jan 2021 00:50:04 GMT expires: - '-1' odata-version: @@ -4750,17 +6764,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4768,7 +6782,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:28 GMT + - Thu, 21 Jan 2021 00:50:06 GMT expires: - '-1' odata-version: @@ -4803,17 +6817,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4821,7 +6835,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:30 GMT + - Thu, 21 Jan 2021 00:50:08 GMT expires: - '-1' odata-version: @@ -4856,17 +6870,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4874,7 +6888,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:32 GMT + - Thu, 21 Jan 2021 00:50:11 GMT expires: - '-1' odata-version: @@ -4909,17 +6923,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4927,7 +6941,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:34 GMT + - Thu, 21 Jan 2021 00:50:13 GMT expires: - '-1' odata-version: @@ -4962,17 +6976,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4980,7 +6994,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:38 GMT + - Thu, 21 Jan 2021 00:50:15 GMT expires: - '-1' odata-version: @@ -5015,17 +7029,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5033,7 +7047,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:40 GMT + - Thu, 21 Jan 2021 00:50:17 GMT expires: - '-1' odata-version: @@ -5068,17 +7082,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5086,7 +7100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:42 GMT + - Thu, 21 Jan 2021 00:50:19 GMT expires: - '-1' odata-version: @@ -5121,17 +7135,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5139,7 +7153,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:44 GMT + - Thu, 21 Jan 2021 00:50:21 GMT expires: - '-1' odata-version: @@ -5174,17 +7188,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5192,7 +7206,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:46 GMT + - Thu, 21 Jan 2021 00:50:23 GMT expires: - '-1' odata-version: @@ -5227,17 +7241,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5245,7 +7259,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:48 GMT + - Thu, 21 Jan 2021 00:50:25 GMT expires: - '-1' odata-version: @@ -5280,17 +7294,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5298,7 +7312,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:50 GMT + - Thu, 21 Jan 2021 00:50:27 GMT expires: - '-1' odata-version: @@ -5333,17 +7347,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5351,7 +7365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:52 GMT + - Thu, 21 Jan 2021 00:50:30 GMT expires: - '-1' odata-version: @@ -5386,17 +7400,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5404,7 +7418,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:55 GMT + - Thu, 21 Jan 2021 00:50:32 GMT expires: - '-1' odata-version: @@ -5439,17 +7453,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5457,7 +7471,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:57 GMT + - Thu, 21 Jan 2021 00:50:34 GMT expires: - '-1' odata-version: @@ -5492,17 +7506,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5510,7 +7524,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:59 GMT + - Thu, 21 Jan 2021 00:50:36 GMT expires: - '-1' odata-version: @@ -5545,17 +7559,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5563,7 +7577,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:01 GMT + - Thu, 21 Jan 2021 00:50:38 GMT expires: - '-1' odata-version: @@ -5598,17 +7612,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5616,7 +7630,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:03 GMT + - Thu, 21 Jan 2021 00:50:40 GMT expires: - '-1' odata-version: @@ -5651,17 +7665,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5669,7 +7683,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:05 GMT + - Thu, 21 Jan 2021 00:50:42 GMT expires: - '-1' odata-version: @@ -5704,17 +7718,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5722,7 +7736,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:07 GMT + - Thu, 21 Jan 2021 00:50:44 GMT expires: - '-1' odata-version: @@ -5757,17 +7771,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5775,7 +7789,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:09 GMT + - Thu, 21 Jan 2021 00:50:47 GMT expires: - '-1' odata-version: @@ -5810,17 +7824,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5828,7 +7842,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:12 GMT + - Thu, 21 Jan 2021 00:50:49 GMT expires: - '-1' odata-version: @@ -5863,17 +7877,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5881,7 +7895,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:14 GMT + - Thu, 21 Jan 2021 00:50:51 GMT expires: - '-1' odata-version: @@ -5916,17 +7930,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5934,7 +7948,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:16 GMT + - Thu, 21 Jan 2021 00:50:53 GMT expires: - '-1' odata-version: @@ -5969,17 +7983,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5987,7 +8001,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:18 GMT + - Thu, 21 Jan 2021 00:50:55 GMT expires: - '-1' odata-version: @@ -6022,17 +8036,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6040,7 +8054,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:20 GMT + - Thu, 21 Jan 2021 00:50:57 GMT expires: - '-1' odata-version: @@ -6075,17 +8089,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6093,7 +8107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:22 GMT + - Thu, 21 Jan 2021 00:50:59 GMT expires: - '-1' odata-version: @@ -6128,17 +8142,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6146,7 +8160,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:24 GMT + - Thu, 21 Jan 2021 00:51:01 GMT expires: - '-1' odata-version: @@ -6181,17 +8195,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6199,7 +8213,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:26 GMT + - Thu, 21 Jan 2021 00:51:03 GMT expires: - '-1' odata-version: @@ -6234,17 +8248,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6252,7 +8266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:28 GMT + - Thu, 21 Jan 2021 00:51:06 GMT expires: - '-1' odata-version: @@ -6287,17 +8301,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6305,7 +8319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:31 GMT + - Thu, 21 Jan 2021 00:51:08 GMT expires: - '-1' odata-version: @@ -6340,17 +8354,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6358,7 +8372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:33 GMT + - Thu, 21 Jan 2021 00:51:10 GMT expires: - '-1' odata-version: @@ -6393,17 +8407,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6411,7 +8425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:35 GMT + - Thu, 21 Jan 2021 00:51:12 GMT expires: - '-1' odata-version: @@ -6446,17 +8460,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6464,7 +8478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:37 GMT + - Thu, 21 Jan 2021 00:51:14 GMT expires: - '-1' odata-version: @@ -6499,17 +8513,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6517,7 +8531,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:39 GMT + - Thu, 21 Jan 2021 00:51:16 GMT expires: - '-1' odata-version: @@ -6552,17 +8566,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6570,7 +8584,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:42 GMT + - Thu, 21 Jan 2021 00:51:18 GMT expires: - '-1' odata-version: @@ -6605,17 +8619,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6623,7 +8637,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:44 GMT + - Thu, 21 Jan 2021 00:51:21 GMT expires: - '-1' odata-version: @@ -6658,17 +8672,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6676,7 +8690,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:46 GMT + - Thu, 21 Jan 2021 00:51:24 GMT expires: - '-1' odata-version: @@ -6711,17 +8725,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6729,7 +8743,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:48 GMT + - Thu, 21 Jan 2021 00:51:26 GMT expires: - '-1' odata-version: @@ -6764,17 +8778,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6782,7 +8796,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:50 GMT + - Thu, 21 Jan 2021 00:51:28 GMT expires: - '-1' odata-version: @@ -6817,17 +8831,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6835,7 +8849,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:52 GMT + - Thu, 21 Jan 2021 00:51:30 GMT expires: - '-1' odata-version: @@ -6870,17 +8884,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6888,7 +8902,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:54 GMT + - Thu, 21 Jan 2021 00:51:32 GMT expires: - '-1' odata-version: @@ -6923,17 +8937,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6941,7 +8955,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:57 GMT + - Thu, 21 Jan 2021 00:51:34 GMT expires: - '-1' odata-version: @@ -6976,17 +8990,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6994,7 +9008,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:28:59 GMT + - Thu, 21 Jan 2021 00:51:36 GMT expires: - '-1' odata-version: @@ -7029,17 +9043,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7047,7 +9061,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:01 GMT + - Thu, 21 Jan 2021 00:51:38 GMT expires: - '-1' odata-version: @@ -7082,17 +9096,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7100,7 +9114,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:03 GMT + - Thu, 21 Jan 2021 00:51:40 GMT expires: - '-1' odata-version: @@ -7135,17 +9149,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7153,7 +9167,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:05 GMT + - Thu, 21 Jan 2021 00:51:43 GMT expires: - '-1' odata-version: @@ -7188,17 +9202,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7206,7 +9220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:07 GMT + - Thu, 21 Jan 2021 00:51:45 GMT expires: - '-1' odata-version: @@ -7241,17 +9255,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7259,7 +9273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:09 GMT + - Thu, 21 Jan 2021 00:51:47 GMT expires: - '-1' odata-version: @@ -7294,17 +9308,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7312,7 +9326,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:11 GMT + - Thu, 21 Jan 2021 00:51:49 GMT expires: - '-1' odata-version: @@ -7347,17 +9361,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7365,7 +9379,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:14 GMT + - Thu, 21 Jan 2021 00:51:51 GMT expires: - '-1' odata-version: @@ -7400,17 +9414,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7418,7 +9432,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:16 GMT + - Thu, 21 Jan 2021 00:51:53 GMT expires: - '-1' odata-version: @@ -7453,17 +9467,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7471,7 +9485,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:18 GMT + - Thu, 21 Jan 2021 00:51:55 GMT expires: - '-1' odata-version: @@ -7506,17 +9520,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7524,7 +9538,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:20 GMT + - Thu, 21 Jan 2021 00:51:57 GMT expires: - '-1' odata-version: @@ -7559,17 +9573,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7577,7 +9591,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:22 GMT + - Thu, 21 Jan 2021 00:52:00 GMT expires: - '-1' odata-version: @@ -7612,17 +9626,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7630,7 +9644,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:24 GMT + - Thu, 21 Jan 2021 00:52:02 GMT expires: - '-1' odata-version: @@ -7665,17 +9679,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7683,7 +9697,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:26 GMT + - Thu, 21 Jan 2021 00:52:04 GMT expires: - '-1' odata-version: @@ -7718,17 +9732,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7736,7 +9750,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:28 GMT + - Thu, 21 Jan 2021 00:52:06 GMT expires: - '-1' odata-version: @@ -7771,17 +9785,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7789,7 +9803,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:30 GMT + - Thu, 21 Jan 2021 00:52:08 GMT expires: - '-1' odata-version: @@ -7824,17 +9838,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7842,7 +9856,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:33 GMT + - Thu, 21 Jan 2021 00:52:10 GMT expires: - '-1' odata-version: @@ -7877,17 +9891,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7895,7 +9909,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:35 GMT + - Thu, 21 Jan 2021 00:52:12 GMT expires: - '-1' odata-version: @@ -7930,17 +9944,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7948,7 +9962,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:37 GMT + - Thu, 21 Jan 2021 00:52:14 GMT expires: - '-1' odata-version: @@ -7983,17 +9997,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8001,7 +10015,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:39 GMT + - Thu, 21 Jan 2021 00:52:17 GMT expires: - '-1' odata-version: @@ -8036,17 +10050,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8054,7 +10068,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:41 GMT + - Thu, 21 Jan 2021 00:52:19 GMT expires: - '-1' odata-version: @@ -8089,17 +10103,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8107,7 +10121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:43 GMT + - Thu, 21 Jan 2021 00:52:21 GMT expires: - '-1' odata-version: @@ -8142,17 +10156,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8160,7 +10174,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:45 GMT + - Thu, 21 Jan 2021 00:52:23 GMT expires: - '-1' odata-version: @@ -8195,17 +10209,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8213,7 +10227,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:47 GMT + - Thu, 21 Jan 2021 00:52:25 GMT expires: - '-1' odata-version: @@ -8248,17 +10262,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8266,7 +10280,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:50 GMT + - Thu, 21 Jan 2021 00:52:27 GMT expires: - '-1' odata-version: @@ -8301,17 +10315,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8319,7 +10333,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:52 GMT + - Thu, 21 Jan 2021 00:52:29 GMT expires: - '-1' odata-version: @@ -8354,17 +10368,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8372,7 +10386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:54 GMT + - Thu, 21 Jan 2021 00:52:31 GMT expires: - '-1' odata-version: @@ -8407,17 +10421,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8425,7 +10439,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:56 GMT + - Thu, 21 Jan 2021 00:52:33 GMT expires: - '-1' odata-version: @@ -8460,17 +10474,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8478,7 +10492,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:29:58 GMT + - Thu, 21 Jan 2021 00:52:36 GMT expires: - '-1' odata-version: @@ -8513,17 +10527,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8531,7 +10545,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:00 GMT + - Thu, 21 Jan 2021 00:52:38 GMT expires: - '-1' odata-version: @@ -8566,17 +10580,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8584,7 +10598,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:02 GMT + - Thu, 21 Jan 2021 00:52:40 GMT expires: - '-1' odata-version: @@ -8619,17 +10633,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8637,7 +10651,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:04 GMT + - Thu, 21 Jan 2021 00:52:42 GMT expires: - '-1' odata-version: @@ -8672,17 +10686,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8690,7 +10704,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:06 GMT + - Thu, 21 Jan 2021 00:52:44 GMT expires: - '-1' odata-version: @@ -8725,17 +10739,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8743,7 +10757,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:10 GMT + - Thu, 21 Jan 2021 00:52:46 GMT expires: - '-1' odata-version: @@ -8778,17 +10792,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8796,7 +10810,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:12 GMT + - Thu, 21 Jan 2021 00:52:48 GMT expires: - '-1' odata-version: @@ -8831,17 +10845,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8849,7 +10863,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:14 GMT + - Thu, 21 Jan 2021 00:52:50 GMT expires: - '-1' odata-version: @@ -8884,17 +10898,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8902,7 +10916,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:16 GMT + - Thu, 21 Jan 2021 00:52:52 GMT expires: - '-1' odata-version: @@ -8937,17 +10951,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8955,7 +10969,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:18 GMT + - Thu, 21 Jan 2021 00:52:55 GMT expires: - '-1' odata-version: @@ -8990,17 +11004,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9008,7 +11022,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:20 GMT + - Thu, 21 Jan 2021 00:52:57 GMT expires: - '-1' odata-version: @@ -9043,17 +11057,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9061,7 +11075,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:22 GMT + - Thu, 21 Jan 2021 00:52:59 GMT expires: - '-1' odata-version: @@ -9096,17 +11110,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9114,7 +11128,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:24 GMT + - Thu, 21 Jan 2021 00:53:01 GMT expires: - '-1' odata-version: @@ -9149,17 +11163,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9167,7 +11181,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:27 GMT + - Thu, 21 Jan 2021 00:53:03 GMT expires: - '-1' odata-version: @@ -9202,17 +11216,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9220,7 +11234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:29 GMT + - Thu, 21 Jan 2021 00:53:05 GMT expires: - '-1' odata-version: @@ -9255,17 +11269,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9273,7 +11287,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:31 GMT + - Thu, 21 Jan 2021 00:53:07 GMT expires: - '-1' odata-version: @@ -9308,17 +11322,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9326,7 +11340,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:33 GMT + - Thu, 21 Jan 2021 00:53:09 GMT expires: - '-1' odata-version: @@ -9361,17 +11375,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9379,7 +11393,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:35 GMT + - Thu, 21 Jan 2021 00:53:11 GMT expires: - '-1' odata-version: @@ -9414,17 +11428,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9432,7 +11446,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:37 GMT + - Thu, 21 Jan 2021 00:53:14 GMT expires: - '-1' odata-version: @@ -9467,17 +11481,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9485,7 +11499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:39 GMT + - Thu, 21 Jan 2021 00:53:16 GMT expires: - '-1' odata-version: @@ -9520,17 +11534,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9538,7 +11552,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:43 GMT + - Thu, 21 Jan 2021 00:53:18 GMT expires: - '-1' odata-version: @@ -9573,17 +11587,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9591,7 +11605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:45 GMT + - Thu, 21 Jan 2021 00:53:20 GMT expires: - '-1' odata-version: @@ -9626,17 +11640,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9644,7 +11658,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:47 GMT + - Thu, 21 Jan 2021 00:53:22 GMT expires: - '-1' odata-version: @@ -9679,17 +11693,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9697,7 +11711,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:49 GMT + - Thu, 21 Jan 2021 00:53:24 GMT expires: - '-1' odata-version: @@ -9732,17 +11746,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9750,7 +11764,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:51 GMT + - Thu, 21 Jan 2021 00:53:27 GMT expires: - '-1' odata-version: @@ -9785,17 +11799,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9803,7 +11817,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:53 GMT + - Thu, 21 Jan 2021 00:53:29 GMT expires: - '-1' odata-version: @@ -9838,17 +11852,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9856,7 +11870,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:56 GMT + - Thu, 21 Jan 2021 00:53:31 GMT expires: - '-1' odata-version: @@ -9891,17 +11905,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9909,7 +11923,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:30:58 GMT + - Thu, 21 Jan 2021 00:53:33 GMT expires: - '-1' odata-version: @@ -9944,17 +11958,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9962,7 +11976,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:00 GMT + - Thu, 21 Jan 2021 00:53:35 GMT expires: - '-1' odata-version: @@ -9997,17 +12011,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10015,7 +12029,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:02 GMT + - Thu, 21 Jan 2021 00:53:37 GMT expires: - '-1' odata-version: @@ -10050,17 +12064,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10068,7 +12082,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:04 GMT + - Thu, 21 Jan 2021 00:53:39 GMT expires: - '-1' odata-version: @@ -10103,17 +12117,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10121,7 +12135,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:06 GMT + - Thu, 21 Jan 2021 00:53:42 GMT expires: - '-1' odata-version: @@ -10156,17 +12170,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10174,7 +12188,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:08 GMT + - Thu, 21 Jan 2021 00:53:44 GMT expires: - '-1' odata-version: @@ -10209,17 +12223,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10227,7 +12241,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:10 GMT + - Thu, 21 Jan 2021 00:53:46 GMT expires: - '-1' odata-version: @@ -10262,17 +12276,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10280,7 +12294,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:13 GMT + - Thu, 21 Jan 2021 00:53:48 GMT expires: - '-1' odata-version: @@ -10315,17 +12329,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10333,7 +12347,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:15 GMT + - Thu, 21 Jan 2021 00:53:50 GMT expires: - '-1' odata-version: @@ -10368,17 +12382,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10386,7 +12400,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:17 GMT + - Thu, 21 Jan 2021 00:53:52 GMT expires: - '-1' odata-version: @@ -10421,17 +12435,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10439,7 +12453,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:19 GMT + - Thu, 21 Jan 2021 00:53:54 GMT expires: - '-1' odata-version: @@ -10474,17 +12488,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10492,7 +12506,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:21 GMT + - Thu, 21 Jan 2021 00:53:56 GMT expires: - '-1' odata-version: @@ -10527,17 +12541,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10545,7 +12559,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:23 GMT + - Thu, 21 Jan 2021 00:53:58 GMT expires: - '-1' odata-version: @@ -10580,17 +12594,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10598,7 +12612,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:25 GMT + - Thu, 21 Jan 2021 00:54:01 GMT expires: - '-1' odata-version: @@ -10633,17 +12647,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10651,7 +12665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:27 GMT + - Thu, 21 Jan 2021 00:54:03 GMT expires: - '-1' odata-version: @@ -10686,17 +12700,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10704,7 +12718,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:29 GMT + - Thu, 21 Jan 2021 00:54:05 GMT expires: - '-1' odata-version: @@ -10739,17 +12753,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10757,7 +12771,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:32 GMT + - Thu, 21 Jan 2021 00:54:07 GMT expires: - '-1' odata-version: @@ -10792,17 +12806,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10810,7 +12824,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:34 GMT + - Thu, 21 Jan 2021 00:54:10 GMT expires: - '-1' odata-version: @@ -10845,17 +12859,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10863,7 +12877,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:36 GMT + - Thu, 21 Jan 2021 00:54:12 GMT expires: - '-1' odata-version: @@ -10898,17 +12912,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10916,7 +12930,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:38 GMT + - Thu, 21 Jan 2021 00:54:14 GMT expires: - '-1' odata-version: @@ -10951,17 +12965,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10969,7 +12983,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:40 GMT + - Thu, 21 Jan 2021 00:54:16 GMT expires: - '-1' odata-version: @@ -11004,17 +13018,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11022,7 +13036,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:42 GMT + - Thu, 21 Jan 2021 00:54:19 GMT expires: - '-1' odata-version: @@ -11057,17 +13071,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11075,7 +13089,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:44 GMT + - Thu, 21 Jan 2021 00:54:21 GMT expires: - '-1' odata-version: @@ -11110,17 +13124,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11128,7 +13142,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:46 GMT + - Thu, 21 Jan 2021 00:54:23 GMT expires: - '-1' odata-version: @@ -11163,17 +13177,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11181,7 +13195,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:49 GMT + - Thu, 21 Jan 2021 00:54:25 GMT expires: - '-1' odata-version: @@ -11216,17 +13230,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11234,7 +13248,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:51 GMT + - Thu, 21 Jan 2021 00:54:27 GMT expires: - '-1' odata-version: @@ -11269,17 +13283,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11287,7 +13301,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:53 GMT + - Thu, 21 Jan 2021 00:54:29 GMT expires: - '-1' odata-version: @@ -11322,17 +13336,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11340,7 +13354,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:55 GMT + - Thu, 21 Jan 2021 00:54:31 GMT expires: - '-1' odata-version: @@ -11375,17 +13389,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11393,7 +13407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:57 GMT + - Thu, 21 Jan 2021 00:54:33 GMT expires: - '-1' odata-version: @@ -11428,17 +13442,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11446,7 +13460,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:31:59 GMT + - Thu, 21 Jan 2021 00:54:35 GMT expires: - '-1' odata-version: @@ -11481,17 +13495,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11499,7 +13513,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:01 GMT + - Thu, 21 Jan 2021 00:54:37 GMT expires: - '-1' odata-version: @@ -11534,17 +13548,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11552,7 +13566,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:03 GMT + - Thu, 21 Jan 2021 00:54:40 GMT expires: - '-1' odata-version: @@ -11587,17 +13601,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11605,7 +13619,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:06 GMT + - Thu, 21 Jan 2021 00:54:42 GMT expires: - '-1' odata-version: @@ -11640,17 +13654,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11658,7 +13672,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:08 GMT + - Thu, 21 Jan 2021 00:54:44 GMT expires: - '-1' odata-version: @@ -11693,17 +13707,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11711,7 +13725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:10 GMT + - Thu, 21 Jan 2021 00:54:46 GMT expires: - '-1' odata-version: @@ -11746,17 +13760,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11764,7 +13778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:12 GMT + - Thu, 21 Jan 2021 00:54:48 GMT expires: - '-1' odata-version: @@ -11799,17 +13813,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11817,7 +13831,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:14 GMT + - Thu, 21 Jan 2021 00:54:50 GMT expires: - '-1' odata-version: @@ -11852,17 +13866,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11870,7 +13884,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:16 GMT + - Thu, 21 Jan 2021 00:54:52 GMT expires: - '-1' odata-version: @@ -11905,17 +13919,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11923,7 +13937,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:18 GMT + - Thu, 21 Jan 2021 00:54:54 GMT expires: - '-1' odata-version: @@ -11958,17 +13972,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11976,7 +13990,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:20 GMT + - Thu, 21 Jan 2021 00:54:56 GMT expires: - '-1' odata-version: @@ -12011,17 +14025,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12029,7 +14043,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:23 GMT + - Thu, 21 Jan 2021 00:54:58 GMT expires: - '-1' odata-version: @@ -12064,17 +14078,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12082,7 +14096,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:25 GMT + - Thu, 21 Jan 2021 00:55:01 GMT expires: - '-1' odata-version: @@ -12117,17 +14131,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12135,7 +14149,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:27 GMT + - Thu, 21 Jan 2021 00:55:03 GMT expires: - '-1' odata-version: @@ -12170,17 +14184,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12188,7 +14202,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:29 GMT + - Thu, 21 Jan 2021 00:55:05 GMT expires: - '-1' odata-version: @@ -12223,17 +14237,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12241,7 +14255,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:31 GMT + - Thu, 21 Jan 2021 00:55:07 GMT expires: - '-1' odata-version: @@ -12276,17 +14290,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12294,7 +14308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:33 GMT + - Thu, 21 Jan 2021 00:55:09 GMT expires: - '-1' odata-version: @@ -12329,17 +14343,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12347,7 +14361,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:35 GMT + - Thu, 21 Jan 2021 00:55:11 GMT expires: - '-1' odata-version: @@ -12382,17 +14396,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12400,7 +14414,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:39 GMT + - Thu, 21 Jan 2021 00:55:13 GMT expires: - '-1' odata-version: @@ -12435,17 +14449,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12453,7 +14467,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:41 GMT + - Thu, 21 Jan 2021 00:55:15 GMT expires: - '-1' odata-version: @@ -12488,17 +14502,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12506,7 +14520,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:43 GMT + - Thu, 21 Jan 2021 00:55:18 GMT expires: - '-1' odata-version: @@ -12541,17 +14555,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12559,7 +14573,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:45 GMT + - Thu, 21 Jan 2021 00:55:20 GMT expires: - '-1' odata-version: @@ -12594,17 +14608,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12612,7 +14626,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:47 GMT + - Thu, 21 Jan 2021 00:55:22 GMT expires: - '-1' odata-version: @@ -12647,17 +14661,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12665,7 +14679,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:49 GMT + - Thu, 21 Jan 2021 00:55:24 GMT expires: - '-1' odata-version: @@ -12700,17 +14714,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12718,7 +14732,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:51 GMT + - Thu, 21 Jan 2021 00:55:26 GMT expires: - '-1' odata-version: @@ -12753,17 +14767,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12771,7 +14785,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:54 GMT + - Thu, 21 Jan 2021 00:55:28 GMT expires: - '-1' odata-version: @@ -12806,17 +14820,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12824,7 +14838,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:56 GMT + - Thu, 21 Jan 2021 00:55:30 GMT expires: - '-1' odata-version: @@ -12859,17 +14873,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12877,7 +14891,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:32:58 GMT + - Thu, 21 Jan 2021 00:55:32 GMT expires: - '-1' odata-version: @@ -12912,17 +14926,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12930,7 +14944,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:00 GMT + - Thu, 21 Jan 2021 00:55:34 GMT expires: - '-1' odata-version: @@ -12965,17 +14979,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12983,7 +14997,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:02 GMT + - Thu, 21 Jan 2021 00:55:36 GMT expires: - '-1' odata-version: @@ -13018,17 +15032,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13036,7 +15050,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:04 GMT + - Thu, 21 Jan 2021 00:55:39 GMT expires: - '-1' odata-version: @@ -13071,17 +15085,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13089,7 +15103,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:06 GMT + - Thu, 21 Jan 2021 00:55:41 GMT expires: - '-1' odata-version: @@ -13124,17 +15138,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13142,7 +15156,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:08 GMT + - Thu, 21 Jan 2021 00:55:43 GMT expires: - '-1' odata-version: @@ -13177,17 +15191,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13195,7 +15209,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:10 GMT + - Thu, 21 Jan 2021 00:55:45 GMT expires: - '-1' odata-version: @@ -13230,17 +15244,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13248,7 +15262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:13 GMT + - Thu, 21 Jan 2021 00:55:47 GMT expires: - '-1' odata-version: @@ -13283,17 +15297,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13301,7 +15315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:15 GMT + - Thu, 21 Jan 2021 00:55:49 GMT expires: - '-1' odata-version: @@ -13336,17 +15350,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13354,7 +15368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:17 GMT + - Thu, 21 Jan 2021 00:55:51 GMT expires: - '-1' odata-version: @@ -13389,17 +15403,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13407,7 +15421,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:19 GMT + - Thu, 21 Jan 2021 00:55:53 GMT expires: - '-1' odata-version: @@ -13442,17 +15456,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13460,7 +15474,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:21 GMT + - Thu, 21 Jan 2021 00:55:55 GMT expires: - '-1' odata-version: @@ -13495,17 +15509,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13513,7 +15527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:23 GMT + - Thu, 21 Jan 2021 00:55:58 GMT expires: - '-1' odata-version: @@ -13548,17 +15562,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13566,7 +15580,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:25 GMT + - Thu, 21 Jan 2021 00:56:00 GMT expires: - '-1' odata-version: @@ -13601,17 +15615,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13619,7 +15633,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:27 GMT + - Thu, 21 Jan 2021 00:56:02 GMT expires: - '-1' odata-version: @@ -13654,17 +15668,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13672,7 +15686,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:29 GMT + - Thu, 21 Jan 2021 00:56:04 GMT expires: - '-1' odata-version: @@ -13707,17 +15721,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13725,7 +15739,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:31 GMT + - Thu, 21 Jan 2021 00:56:07 GMT expires: - '-1' odata-version: @@ -13760,17 +15774,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13778,7 +15792,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:34 GMT + - Thu, 21 Jan 2021 00:56:09 GMT expires: - '-1' odata-version: @@ -13813,17 +15827,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13831,7 +15845,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:36 GMT + - Thu, 21 Jan 2021 00:56:11 GMT expires: - '-1' odata-version: @@ -13866,17 +15880,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13884,7 +15898,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:38 GMT + - Thu, 21 Jan 2021 00:56:13 GMT expires: - '-1' odata-version: @@ -13919,17 +15933,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13937,7 +15951,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:40 GMT + - Thu, 21 Jan 2021 00:56:15 GMT expires: - '-1' odata-version: @@ -13972,17 +15986,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13990,7 +16004,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:42 GMT + - Thu, 21 Jan 2021 00:56:18 GMT expires: - '-1' odata-version: @@ -14025,17 +16039,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14043,7 +16057,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:44 GMT + - Thu, 21 Jan 2021 00:56:20 GMT expires: - '-1' odata-version: @@ -14078,17 +16092,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14096,7 +16110,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:46 GMT + - Thu, 21 Jan 2021 00:56:22 GMT expires: - '-1' odata-version: @@ -14131,17 +16145,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14149,7 +16163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:48 GMT + - Thu, 21 Jan 2021 00:56:24 GMT expires: - '-1' odata-version: @@ -14184,17 +16198,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14202,7 +16216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:51 GMT + - Thu, 21 Jan 2021 00:56:26 GMT expires: - '-1' odata-version: @@ -14237,17 +16251,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14255,7 +16269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:53 GMT + - Thu, 21 Jan 2021 00:56:28 GMT expires: - '-1' odata-version: @@ -14290,17 +16304,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14308,7 +16322,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:55 GMT + - Thu, 21 Jan 2021 00:56:30 GMT expires: - '-1' odata-version: @@ -14343,17 +16357,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14361,7 +16375,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:57 GMT + - Thu, 21 Jan 2021 00:56:32 GMT expires: - '-1' odata-version: @@ -14396,17 +16410,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14414,7 +16428,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:33:59 GMT + - Thu, 21 Jan 2021 00:56:35 GMT expires: - '-1' odata-version: @@ -14449,17 +16463,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14467,7 +16481,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:01 GMT + - Thu, 21 Jan 2021 00:56:37 GMT expires: - '-1' odata-version: @@ -14502,17 +16516,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14520,7 +16534,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:03 GMT + - Thu, 21 Jan 2021 00:56:39 GMT expires: - '-1' odata-version: @@ -14555,17 +16569,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14573,7 +16587,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:05 GMT + - Thu, 21 Jan 2021 00:56:41 GMT expires: - '-1' odata-version: @@ -14608,17 +16622,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14626,7 +16640,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:07 GMT + - Thu, 21 Jan 2021 00:56:43 GMT expires: - '-1' odata-version: @@ -14661,17 +16675,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14679,7 +16693,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:09 GMT + - Thu, 21 Jan 2021 00:56:45 GMT expires: - '-1' odata-version: @@ -14714,17 +16728,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14732,7 +16746,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:12 GMT + - Thu, 21 Jan 2021 00:56:47 GMT expires: - '-1' odata-version: @@ -14767,17 +16781,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14785,7 +16799,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:14 GMT + - Thu, 21 Jan 2021 00:56:49 GMT expires: - '-1' odata-version: @@ -14820,17 +16834,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14838,7 +16852,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:16 GMT + - Thu, 21 Jan 2021 00:56:51 GMT expires: - '-1' odata-version: @@ -14873,17 +16887,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14891,7 +16905,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:18 GMT + - Thu, 21 Jan 2021 00:56:53 GMT expires: - '-1' odata-version: @@ -14926,17 +16940,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14944,7 +16958,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:20 GMT + - Thu, 21 Jan 2021 00:56:56 GMT expires: - '-1' odata-version: @@ -14979,17 +16993,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14997,7 +17011,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:22 GMT + - Thu, 21 Jan 2021 00:56:58 GMT expires: - '-1' odata-version: @@ -15032,17 +17046,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15050,7 +17064,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:24 GMT + - Thu, 21 Jan 2021 00:57:00 GMT expires: - '-1' odata-version: @@ -15085,17 +17099,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15103,7 +17117,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:26 GMT + - Thu, 21 Jan 2021 00:57:02 GMT expires: - '-1' odata-version: @@ -15138,17 +17152,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15156,7 +17170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:28 GMT + - Thu, 21 Jan 2021 00:57:04 GMT expires: - '-1' odata-version: @@ -15191,17 +17205,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15209,7 +17223,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:31 GMT + - Thu, 21 Jan 2021 00:57:06 GMT expires: - '-1' odata-version: @@ -15244,17 +17258,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15262,7 +17276,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:33 GMT + - Thu, 21 Jan 2021 00:57:08 GMT expires: - '-1' odata-version: @@ -15297,17 +17311,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15315,7 +17329,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:35 GMT + - Thu, 21 Jan 2021 00:57:10 GMT expires: - '-1' odata-version: @@ -15350,17 +17364,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15368,7 +17382,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:37 GMT + - Thu, 21 Jan 2021 00:57:12 GMT expires: - '-1' odata-version: @@ -15403,17 +17417,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15421,7 +17435,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:39 GMT + - Thu, 21 Jan 2021 00:57:15 GMT expires: - '-1' odata-version: @@ -15456,17 +17470,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15474,7 +17488,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:41 GMT + - Thu, 21 Jan 2021 00:57:17 GMT expires: - '-1' odata-version: @@ -15509,17 +17523,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15527,7 +17541,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:43 GMT + - Thu, 21 Jan 2021 00:57:19 GMT expires: - '-1' odata-version: @@ -15562,17 +17576,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15580,7 +17594,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:45 GMT + - Thu, 21 Jan 2021 00:57:21 GMT expires: - '-1' odata-version: @@ -15615,17 +17629,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15633,7 +17647,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:47 GMT + - Thu, 21 Jan 2021 00:57:23 GMT expires: - '-1' odata-version: @@ -15668,17 +17682,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15686,7 +17700,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:50 GMT + - Thu, 21 Jan 2021 00:57:25 GMT expires: - '-1' odata-version: @@ -15721,17 +17735,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15739,7 +17753,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:52 GMT + - Thu, 21 Jan 2021 00:57:28 GMT expires: - '-1' odata-version: @@ -15774,17 +17788,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15792,7 +17806,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:55 GMT + - Thu, 21 Jan 2021 00:57:30 GMT expires: - '-1' odata-version: @@ -15827,17 +17841,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15845,7 +17859,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:57 GMT + - Thu, 21 Jan 2021 00:57:32 GMT expires: - '-1' odata-version: @@ -15880,17 +17894,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15898,7 +17912,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:34:59 GMT + - Thu, 21 Jan 2021 00:57:34 GMT expires: - '-1' odata-version: @@ -15933,17 +17947,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15951,7 +17965,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:01 GMT + - Thu, 21 Jan 2021 00:57:36 GMT expires: - '-1' odata-version: @@ -15986,17 +18000,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16004,7 +18018,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:03 GMT + - Thu, 21 Jan 2021 00:57:38 GMT expires: - '-1' odata-version: @@ -16039,17 +18053,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16057,7 +18071,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:05 GMT + - Thu, 21 Jan 2021 00:57:40 GMT expires: - '-1' odata-version: @@ -16092,17 +18106,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16110,7 +18124,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:07 GMT + - Thu, 21 Jan 2021 00:57:42 GMT expires: - '-1' odata-version: @@ -16145,17 +18159,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16163,7 +18177,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:10 GMT + - Thu, 21 Jan 2021 00:57:44 GMT expires: - '-1' odata-version: @@ -16198,17 +18212,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16216,7 +18230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:12 GMT + - Thu, 21 Jan 2021 00:57:47 GMT expires: - '-1' odata-version: @@ -16251,17 +18265,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16269,7 +18283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:14 GMT + - Thu, 21 Jan 2021 00:57:49 GMT expires: - '-1' odata-version: @@ -16304,17 +18318,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16322,7 +18336,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:16 GMT + - Thu, 21 Jan 2021 00:57:51 GMT expires: - '-1' odata-version: @@ -16357,17 +18371,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16375,7 +18389,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:18 GMT + - Thu, 21 Jan 2021 00:57:53 GMT expires: - '-1' odata-version: @@ -16410,17 +18424,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16428,7 +18442,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:20 GMT + - Thu, 21 Jan 2021 00:57:55 GMT expires: - '-1' odata-version: @@ -16463,17 +18477,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16481,7 +18495,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:22 GMT + - Thu, 21 Jan 2021 00:57:57 GMT expires: - '-1' odata-version: @@ -16516,17 +18530,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16534,7 +18548,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:24 GMT + - Thu, 21 Jan 2021 00:57:59 GMT expires: - '-1' odata-version: @@ -16569,17 +18583,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16587,7 +18601,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:27 GMT + - Thu, 21 Jan 2021 00:58:01 GMT expires: - '-1' odata-version: @@ -16622,17 +18636,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16640,7 +18654,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:29 GMT + - Thu, 21 Jan 2021 00:58:03 GMT expires: - '-1' odata-version: @@ -16675,17 +18689,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16693,7 +18707,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:31 GMT + - Thu, 21 Jan 2021 00:58:06 GMT expires: - '-1' odata-version: @@ -16728,17 +18742,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16746,7 +18760,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:33 GMT + - Thu, 21 Jan 2021 00:58:08 GMT expires: - '-1' odata-version: @@ -16781,17 +18795,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16799,7 +18813,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:35 GMT + - Thu, 21 Jan 2021 00:58:10 GMT expires: - '-1' odata-version: @@ -16834,17 +18848,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16852,7 +18866,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:37 GMT + - Thu, 21 Jan 2021 00:58:12 GMT expires: - '-1' odata-version: @@ -16887,17 +18901,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16905,7 +18919,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:39 GMT + - Thu, 21 Jan 2021 00:58:14 GMT expires: - '-1' odata-version: @@ -16940,17 +18954,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16958,7 +18972,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:41 GMT + - Thu, 21 Jan 2021 00:58:17 GMT expires: - '-1' odata-version: @@ -16993,17 +19007,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17011,7 +19025,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:44 GMT + - Thu, 21 Jan 2021 00:58:19 GMT expires: - '-1' odata-version: @@ -17046,17 +19060,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17064,7 +19078,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:46 GMT + - Thu, 21 Jan 2021 00:58:21 GMT expires: - '-1' odata-version: @@ -17099,17 +19113,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17117,7 +19131,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:48 GMT + - Thu, 21 Jan 2021 00:58:23 GMT expires: - '-1' odata-version: @@ -17152,17 +19166,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17170,7 +19184,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:50 GMT + - Thu, 21 Jan 2021 00:58:26 GMT expires: - '-1' odata-version: @@ -17205,17 +19219,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17223,7 +19237,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:52 GMT + - Thu, 21 Jan 2021 00:58:28 GMT expires: - '-1' odata-version: @@ -17258,17 +19272,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17276,7 +19290,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:54 GMT + - Thu, 21 Jan 2021 00:58:30 GMT expires: - '-1' odata-version: @@ -17311,17 +19325,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17329,7 +19343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:56 GMT + - Thu, 21 Jan 2021 00:58:32 GMT expires: - '-1' odata-version: @@ -17364,17 +19378,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17382,7 +19396,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:35:58 GMT + - Thu, 21 Jan 2021 00:58:34 GMT expires: - '-1' odata-version: @@ -17417,17 +19431,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17435,7 +19449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:00 GMT + - Thu, 21 Jan 2021 00:58:36 GMT expires: - '-1' odata-version: @@ -17470,17 +19484,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17488,7 +19502,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:03 GMT + - Thu, 21 Jan 2021 00:58:38 GMT expires: - '-1' odata-version: @@ -17523,17 +19537,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17541,7 +19555,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:05 GMT + - Thu, 21 Jan 2021 00:58:40 GMT expires: - '-1' odata-version: @@ -17576,17 +19590,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17594,7 +19608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:07 GMT + - Thu, 21 Jan 2021 00:58:43 GMT expires: - '-1' odata-version: @@ -17629,17 +19643,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17647,7 +19661,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:09 GMT + - Thu, 21 Jan 2021 00:58:45 GMT expires: - '-1' odata-version: @@ -17682,17 +19696,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17700,7 +19714,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:11 GMT + - Thu, 21 Jan 2021 00:58:47 GMT expires: - '-1' odata-version: @@ -17735,17 +19749,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17753,7 +19767,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:13 GMT + - Thu, 21 Jan 2021 00:58:49 GMT expires: - '-1' odata-version: @@ -17788,17 +19802,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17806,7 +19820,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:15 GMT + - Thu, 21 Jan 2021 00:58:51 GMT expires: - '-1' odata-version: @@ -17841,17 +19855,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17859,7 +19873,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:17 GMT + - Thu, 21 Jan 2021 00:58:53 GMT expires: - '-1' odata-version: @@ -17894,17 +19908,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17912,7 +19926,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:19 GMT + - Thu, 21 Jan 2021 00:58:55 GMT expires: - '-1' odata-version: @@ -17947,17 +19961,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17965,7 +19979,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:22 GMT + - Thu, 21 Jan 2021 00:58:57 GMT expires: - '-1' odata-version: @@ -18000,17 +20014,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18018,7 +20032,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:24 GMT + - Thu, 21 Jan 2021 00:58:59 GMT expires: - '-1' odata-version: @@ -18053,17 +20067,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18071,7 +20085,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:26 GMT + - Thu, 21 Jan 2021 00:59:02 GMT expires: - '-1' odata-version: @@ -18106,17 +20120,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18124,7 +20138,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:28 GMT + - Thu, 21 Jan 2021 00:59:04 GMT expires: - '-1' odata-version: @@ -18159,17 +20173,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18177,7 +20191,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:30 GMT + - Thu, 21 Jan 2021 00:59:06 GMT expires: - '-1' odata-version: @@ -18212,17 +20226,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18230,7 +20244,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:32 GMT + - Thu, 21 Jan 2021 00:59:08 GMT expires: - '-1' odata-version: @@ -18265,17 +20279,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18283,7 +20297,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:34 GMT + - Thu, 21 Jan 2021 00:59:10 GMT expires: - '-1' odata-version: @@ -18318,17 +20332,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18336,7 +20350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:36 GMT + - Thu, 21 Jan 2021 00:59:12 GMT expires: - '-1' odata-version: @@ -18371,17 +20385,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18389,7 +20403,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:39 GMT + - Thu, 21 Jan 2021 00:59:14 GMT expires: - '-1' odata-version: @@ -18424,17 +20438,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18442,7 +20456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:41 GMT + - Thu, 21 Jan 2021 00:59:16 GMT expires: - '-1' odata-version: @@ -18477,17 +20491,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18495,7 +20509,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:43 GMT + - Thu, 21 Jan 2021 00:59:18 GMT expires: - '-1' odata-version: @@ -18530,17 +20544,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18548,7 +20562,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:45 GMT + - Thu, 21 Jan 2021 00:59:21 GMT expires: - '-1' odata-version: @@ -18583,17 +20597,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18601,7 +20615,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:47 GMT + - Thu, 21 Jan 2021 00:59:23 GMT expires: - '-1' odata-version: @@ -18636,17 +20650,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18654,7 +20668,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:49 GMT + - Thu, 21 Jan 2021 00:59:25 GMT expires: - '-1' odata-version: @@ -18689,17 +20703,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18707,7 +20721,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:52 GMT + - Thu, 21 Jan 2021 00:59:27 GMT expires: - '-1' odata-version: @@ -18742,17 +20756,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18760,7 +20774,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:54 GMT + - Thu, 21 Jan 2021 00:59:29 GMT expires: - '-1' odata-version: @@ -18795,17 +20809,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18813,7 +20827,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:56 GMT + - Thu, 21 Jan 2021 00:59:31 GMT expires: - '-1' odata-version: @@ -18848,17 +20862,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18866,7 +20880,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:36:58 GMT + - Thu, 21 Jan 2021 00:59:33 GMT expires: - '-1' odata-version: @@ -18901,17 +20915,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18919,7 +20933,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:00 GMT + - Thu, 21 Jan 2021 00:59:35 GMT expires: - '-1' odata-version: @@ -18954,17 +20968,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18972,7 +20986,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:02 GMT + - Thu, 21 Jan 2021 00:59:37 GMT expires: - '-1' odata-version: @@ -19007,17 +21021,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19025,7 +21039,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:04 GMT + - Thu, 21 Jan 2021 00:59:40 GMT expires: - '-1' odata-version: @@ -19060,17 +21074,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19078,7 +21092,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:07 GMT + - Thu, 21 Jan 2021 00:59:42 GMT expires: - '-1' odata-version: @@ -19113,17 +21127,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19131,7 +21145,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:09 GMT + - Thu, 21 Jan 2021 00:59:44 GMT expires: - '-1' odata-version: @@ -19166,17 +21180,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19184,7 +21198,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:11 GMT + - Thu, 21 Jan 2021 00:59:46 GMT expires: - '-1' odata-version: @@ -19219,17 +21233,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19237,7 +21251,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:13 GMT + - Thu, 21 Jan 2021 00:59:48 GMT expires: - '-1' odata-version: @@ -19272,17 +21286,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19290,7 +21304,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:15 GMT + - Thu, 21 Jan 2021 00:59:50 GMT expires: - '-1' odata-version: @@ -19325,17 +21339,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19343,7 +21357,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:17 GMT + - Thu, 21 Jan 2021 00:59:52 GMT expires: - '-1' odata-version: @@ -19378,17 +21392,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19396,7 +21410,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:19 GMT + - Thu, 21 Jan 2021 00:59:54 GMT expires: - '-1' odata-version: @@ -19431,17 +21445,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19449,7 +21463,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:21 GMT + - Thu, 21 Jan 2021 00:59:57 GMT expires: - '-1' odata-version: @@ -19484,17 +21498,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19502,7 +21516,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:23 GMT + - Thu, 21 Jan 2021 00:59:59 GMT expires: - '-1' odata-version: @@ -19537,17 +21551,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19555,7 +21569,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:26 GMT + - Thu, 21 Jan 2021 01:00:01 GMT expires: - '-1' odata-version: @@ -19590,17 +21604,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19608,7 +21622,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:28 GMT + - Thu, 21 Jan 2021 01:00:03 GMT expires: - '-1' odata-version: @@ -19643,17 +21657,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19661,7 +21675,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:30 GMT + - Thu, 21 Jan 2021 01:00:05 GMT expires: - '-1' odata-version: @@ -19696,17 +21710,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19714,7 +21728,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:32 GMT + - Thu, 21 Jan 2021 01:00:07 GMT expires: - '-1' odata-version: @@ -19749,17 +21763,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19767,7 +21781,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:34 GMT + - Thu, 21 Jan 2021 01:00:09 GMT expires: - '-1' odata-version: @@ -19802,17 +21816,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19820,7 +21834,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:36 GMT + - Thu, 21 Jan 2021 01:00:11 GMT expires: - '-1' odata-version: @@ -19855,17 +21869,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19873,7 +21887,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:38 GMT + - Thu, 21 Jan 2021 01:00:13 GMT expires: - '-1' odata-version: @@ -19908,17 +21922,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19926,7 +21940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:40 GMT + - Thu, 21 Jan 2021 01:00:16 GMT expires: - '-1' odata-version: @@ -19961,17 +21975,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19979,7 +21993,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:43 GMT + - Thu, 21 Jan 2021 01:00:18 GMT expires: - '-1' odata-version: @@ -20014,17 +22028,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20032,7 +22046,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:45 GMT + - Thu, 21 Jan 2021 01:00:20 GMT expires: - '-1' odata-version: @@ -20067,17 +22081,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20085,7 +22099,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:47 GMT + - Thu, 21 Jan 2021 01:00:22 GMT expires: - '-1' odata-version: @@ -20120,17 +22134,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20138,7 +22152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:49 GMT + - Thu, 21 Jan 2021 01:00:24 GMT expires: - '-1' odata-version: @@ -20173,17 +22187,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20191,7 +22205,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:51 GMT + - Thu, 21 Jan 2021 01:00:26 GMT expires: - '-1' odata-version: @@ -20226,17 +22240,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20244,7 +22258,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:53 GMT + - Thu, 21 Jan 2021 01:00:28 GMT expires: - '-1' odata-version: @@ -20279,17 +22293,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20297,7 +22311,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:55 GMT + - Thu, 21 Jan 2021 01:00:30 GMT expires: - '-1' odata-version: @@ -20332,17 +22346,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20350,7 +22364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:37:57 GMT + - Thu, 21 Jan 2021 01:00:32 GMT expires: - '-1' odata-version: @@ -20385,17 +22399,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20403,7 +22417,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:00 GMT + - Thu, 21 Jan 2021 01:00:35 GMT expires: - '-1' odata-version: @@ -20438,17 +22452,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20456,7 +22470,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:02 GMT + - Thu, 21 Jan 2021 01:00:37 GMT expires: - '-1' odata-version: @@ -20491,17 +22505,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20509,7 +22523,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:04 GMT + - Thu, 21 Jan 2021 01:00:39 GMT expires: - '-1' odata-version: @@ -20544,17 +22558,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20562,7 +22576,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:06 GMT + - Thu, 21 Jan 2021 01:00:42 GMT expires: - '-1' odata-version: @@ -20597,17 +22611,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20615,7 +22629,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:08 GMT + - Thu, 21 Jan 2021 01:00:44 GMT expires: - '-1' odata-version: @@ -20650,17 +22664,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20668,7 +22682,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:10 GMT + - Thu, 21 Jan 2021 01:00:46 GMT expires: - '-1' odata-version: @@ -20703,17 +22717,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20721,7 +22735,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:12 GMT + - Thu, 21 Jan 2021 01:00:48 GMT expires: - '-1' odata-version: @@ -20756,17 +22770,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20774,7 +22788,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:15 GMT + - Thu, 21 Jan 2021 01:00:51 GMT expires: - '-1' odata-version: @@ -20809,17 +22823,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20827,7 +22841,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:18 GMT + - Thu, 21 Jan 2021 01:00:53 GMT expires: - '-1' odata-version: @@ -20862,17 +22876,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20880,7 +22894,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:20 GMT + - Thu, 21 Jan 2021 01:00:55 GMT expires: - '-1' odata-version: @@ -20915,17 +22929,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20933,7 +22947,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:22 GMT + - Thu, 21 Jan 2021 01:00:57 GMT expires: - '-1' odata-version: @@ -20968,17 +22982,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20986,7 +23000,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:24 GMT + - Thu, 21 Jan 2021 01:00:59 GMT expires: - '-1' odata-version: @@ -21021,17 +23035,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21039,7 +23053,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:26 GMT + - Thu, 21 Jan 2021 01:01:01 GMT expires: - '-1' odata-version: @@ -21074,17 +23088,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21092,7 +23106,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:28 GMT + - Thu, 21 Jan 2021 01:01:03 GMT expires: - '-1' odata-version: @@ -21127,17 +23141,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21145,7 +23159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:30 GMT + - Thu, 21 Jan 2021 01:01:05 GMT expires: - '-1' odata-version: @@ -21180,17 +23194,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21198,7 +23212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:32 GMT + - Thu, 21 Jan 2021 01:01:07 GMT expires: - '-1' odata-version: @@ -21233,17 +23247,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21251,7 +23265,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:35 GMT + - Thu, 21 Jan 2021 01:01:10 GMT expires: - '-1' odata-version: @@ -21286,17 +23300,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21304,7 +23318,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:37 GMT + - Thu, 21 Jan 2021 01:01:12 GMT expires: - '-1' odata-version: @@ -21339,17 +23353,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21357,7 +23371,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:39 GMT + - Thu, 21 Jan 2021 01:01:14 GMT expires: - '-1' odata-version: @@ -21392,17 +23406,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21410,7 +23424,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:41 GMT + - Thu, 21 Jan 2021 01:01:16 GMT expires: - '-1' odata-version: @@ -21445,17 +23459,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21463,7 +23477,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:43 GMT + - Thu, 21 Jan 2021 01:01:18 GMT expires: - '-1' odata-version: @@ -21498,17 +23512,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21516,7 +23530,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:45 GMT + - Thu, 21 Jan 2021 01:01:20 GMT expires: - '-1' odata-version: @@ -21551,17 +23565,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21569,7 +23583,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:47 GMT + - Thu, 21 Jan 2021 01:01:23 GMT expires: - '-1' odata-version: @@ -21604,17 +23618,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21622,7 +23636,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:49 GMT + - Thu, 21 Jan 2021 01:01:25 GMT expires: - '-1' odata-version: @@ -21657,17 +23671,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21675,7 +23689,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:52 GMT + - Thu, 21 Jan 2021 01:01:27 GMT expires: - '-1' odata-version: @@ -21710,17 +23724,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21728,7 +23742,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:54 GMT + - Thu, 21 Jan 2021 01:01:29 GMT expires: - '-1' odata-version: @@ -21763,17 +23777,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21781,7 +23795,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:56 GMT + - Thu, 21 Jan 2021 01:01:31 GMT expires: - '-1' odata-version: @@ -21816,17 +23830,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21834,7 +23848,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:38:58 GMT + - Thu, 21 Jan 2021 01:01:33 GMT expires: - '-1' odata-version: @@ -21869,17 +23883,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21887,7 +23901,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:00 GMT + - Thu, 21 Jan 2021 01:01:35 GMT expires: - '-1' odata-version: @@ -21922,17 +23936,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21940,7 +23954,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:02 GMT + - Thu, 21 Jan 2021 01:01:37 GMT expires: - '-1' odata-version: @@ -21975,17 +23989,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21993,7 +24007,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:04 GMT + - Thu, 21 Jan 2021 01:01:40 GMT expires: - '-1' odata-version: @@ -22028,17 +24042,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22046,7 +24060,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:06 GMT + - Thu, 21 Jan 2021 01:01:42 GMT expires: - '-1' odata-version: @@ -22081,17 +24095,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22099,7 +24113,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:09 GMT + - Thu, 21 Jan 2021 01:01:44 GMT expires: - '-1' odata-version: @@ -22134,17 +24148,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22152,7 +24166,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:11 GMT + - Thu, 21 Jan 2021 01:01:46 GMT expires: - '-1' odata-version: @@ -22187,17 +24201,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22205,7 +24219,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:13 GMT + - Thu, 21 Jan 2021 01:01:48 GMT expires: - '-1' odata-version: @@ -22240,17 +24254,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22258,7 +24272,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:15 GMT + - Thu, 21 Jan 2021 01:01:50 GMT expires: - '-1' odata-version: @@ -22293,17 +24307,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22311,7 +24325,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:17 GMT + - Thu, 21 Jan 2021 01:01:52 GMT expires: - '-1' odata-version: @@ -22346,17 +24360,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22364,7 +24378,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:19 GMT + - Thu, 21 Jan 2021 01:01:54 GMT expires: - '-1' odata-version: @@ -22399,17 +24413,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22417,7 +24431,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:21 GMT + - Thu, 21 Jan 2021 01:01:56 GMT expires: - '-1' odata-version: @@ -22452,17 +24466,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22470,7 +24484,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:23 GMT + - Thu, 21 Jan 2021 01:01:59 GMT expires: - '-1' odata-version: @@ -22505,17 +24519,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22523,7 +24537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:26 GMT + - Thu, 21 Jan 2021 01:02:01 GMT expires: - '-1' odata-version: @@ -22558,17 +24572,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22576,7 +24590,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:28 GMT + - Thu, 21 Jan 2021 01:02:03 GMT expires: - '-1' odata-version: @@ -22611,17 +24625,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22629,7 +24643,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:30 GMT + - Thu, 21 Jan 2021 01:02:05 GMT expires: - '-1' odata-version: @@ -22664,17 +24678,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22682,7 +24696,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:32 GMT + - Thu, 21 Jan 2021 01:02:07 GMT expires: - '-1' odata-version: @@ -22717,17 +24731,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22735,7 +24749,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:34 GMT + - Thu, 21 Jan 2021 01:02:09 GMT expires: - '-1' odata-version: @@ -22770,17 +24784,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22788,7 +24802,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:36 GMT + - Thu, 21 Jan 2021 01:02:11 GMT expires: - '-1' odata-version: @@ -22823,17 +24837,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22841,7 +24855,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:38 GMT + - Thu, 21 Jan 2021 01:02:13 GMT expires: - '-1' odata-version: @@ -22876,17 +24890,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22894,7 +24908,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:40 GMT + - Thu, 21 Jan 2021 01:02:16 GMT expires: - '-1' odata-version: @@ -22929,17 +24943,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22947,7 +24961,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:43 GMT + - Thu, 21 Jan 2021 01:02:18 GMT expires: - '-1' odata-version: @@ -22982,17 +24996,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23000,7 +25014,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:45 GMT + - Thu, 21 Jan 2021 01:02:20 GMT expires: - '-1' odata-version: @@ -23035,17 +25049,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23053,7 +25067,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:47 GMT + - Thu, 21 Jan 2021 01:02:22 GMT expires: - '-1' odata-version: @@ -23088,17 +25102,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23106,7 +25120,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:49 GMT + - Thu, 21 Jan 2021 01:02:24 GMT expires: - '-1' odata-version: @@ -23141,17 +25155,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23159,7 +25173,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:51 GMT + - Thu, 21 Jan 2021 01:02:26 GMT expires: - '-1' odata-version: @@ -23194,17 +25208,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23212,7 +25226,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:53 GMT + - Thu, 21 Jan 2021 01:02:28 GMT expires: - '-1' odata-version: @@ -23247,17 +25261,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23265,7 +25279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:55 GMT + - Thu, 21 Jan 2021 01:02:30 GMT expires: - '-1' odata-version: @@ -23300,17 +25314,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23318,7 +25332,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:39:57 GMT + - Thu, 21 Jan 2021 01:02:32 GMT expires: - '-1' odata-version: @@ -23353,17 +25367,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23371,7 +25385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:00 GMT + - Thu, 21 Jan 2021 01:02:35 GMT expires: - '-1' odata-version: @@ -23406,17 +25420,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23424,7 +25438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:02 GMT + - Thu, 21 Jan 2021 01:02:37 GMT expires: - '-1' odata-version: @@ -23459,17 +25473,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23477,7 +25491,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:04 GMT + - Thu, 21 Jan 2021 01:02:39 GMT expires: - '-1' odata-version: @@ -23512,17 +25526,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23530,7 +25544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:06 GMT + - Thu, 21 Jan 2021 01:02:41 GMT expires: - '-1' odata-version: @@ -23565,17 +25579,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23583,7 +25597,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:08 GMT + - Thu, 21 Jan 2021 01:02:43 GMT expires: - '-1' odata-version: @@ -23618,17 +25632,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23636,7 +25650,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:10 GMT + - Thu, 21 Jan 2021 01:02:45 GMT expires: - '-1' odata-version: @@ -23671,17 +25685,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23689,7 +25703,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:12 GMT + - Thu, 21 Jan 2021 01:02:47 GMT expires: - '-1' odata-version: @@ -23724,17 +25738,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23742,7 +25756,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:14 GMT + - Thu, 21 Jan 2021 01:02:49 GMT expires: - '-1' odata-version: @@ -23777,17 +25791,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23795,7 +25809,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:17 GMT + - Thu, 21 Jan 2021 01:02:51 GMT expires: - '-1' odata-version: @@ -23830,17 +25844,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23848,7 +25862,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:19 GMT + - Thu, 21 Jan 2021 01:02:54 GMT expires: - '-1' odata-version: @@ -23883,17 +25897,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23901,7 +25915,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:21 GMT + - Thu, 21 Jan 2021 01:02:56 GMT expires: - '-1' odata-version: @@ -23936,17 +25950,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23954,7 +25968,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:23 GMT + - Thu, 21 Jan 2021 01:02:58 GMT expires: - '-1' odata-version: @@ -23989,17 +26003,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24007,7 +26021,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:25 GMT + - Thu, 21 Jan 2021 01:03:00 GMT expires: - '-1' odata-version: @@ -24042,17 +26056,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24060,7 +26074,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:27 GMT + - Thu, 21 Jan 2021 01:03:02 GMT expires: - '-1' odata-version: @@ -24095,17 +26109,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24113,7 +26127,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:29 GMT + - Thu, 21 Jan 2021 01:03:05 GMT expires: - '-1' odata-version: @@ -24148,17 +26162,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24166,7 +26180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:31 GMT + - Thu, 21 Jan 2021 01:03:07 GMT expires: - '-1' odata-version: @@ -24201,17 +26215,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24219,7 +26233,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:34 GMT + - Thu, 21 Jan 2021 01:03:09 GMT expires: - '-1' odata-version: @@ -24254,17 +26268,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24272,7 +26286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:36 GMT + - Thu, 21 Jan 2021 01:03:12 GMT expires: - '-1' odata-version: @@ -24307,17 +26321,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24325,7 +26339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:38 GMT + - Thu, 21 Jan 2021 01:03:14 GMT expires: - '-1' odata-version: @@ -24360,17 +26374,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24378,7 +26392,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:40 GMT + - Thu, 21 Jan 2021 01:03:16 GMT expires: - '-1' odata-version: @@ -24413,17 +26427,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24431,7 +26445,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:42 GMT + - Thu, 21 Jan 2021 01:03:18 GMT expires: - '-1' odata-version: @@ -24466,17 +26480,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24484,7 +26498,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:44 GMT + - Thu, 21 Jan 2021 01:03:20 GMT expires: - '-1' odata-version: @@ -24519,17 +26533,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24537,7 +26551,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:46 GMT + - Thu, 21 Jan 2021 01:03:22 GMT expires: - '-1' odata-version: @@ -24572,17 +26586,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24590,7 +26604,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:48 GMT + - Thu, 21 Jan 2021 01:03:24 GMT expires: - '-1' odata-version: @@ -24625,17 +26639,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24643,7 +26657,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:51 GMT + - Thu, 21 Jan 2021 01:03:26 GMT expires: - '-1' odata-version: @@ -24678,17 +26692,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24696,7 +26710,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:53 GMT + - Thu, 21 Jan 2021 01:03:28 GMT expires: - '-1' odata-version: @@ -24731,17 +26745,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24749,7 +26763,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:55 GMT + - Thu, 21 Jan 2021 01:03:30 GMT expires: - '-1' odata-version: @@ -24784,17 +26798,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24802,7 +26816,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:57 GMT + - Thu, 21 Jan 2021 01:03:33 GMT expires: - '-1' odata-version: @@ -24837,17 +26851,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24855,7 +26869,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:40:59 GMT + - Thu, 21 Jan 2021 01:03:35 GMT expires: - '-1' odata-version: @@ -24890,17 +26904,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24908,7 +26922,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:02 GMT + - Thu, 21 Jan 2021 01:03:37 GMT expires: - '-1' odata-version: @@ -24943,17 +26957,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24961,7 +26975,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:04 GMT + - Thu, 21 Jan 2021 01:03:39 GMT expires: - '-1' odata-version: @@ -24996,17 +27010,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25014,7 +27028,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:06 GMT + - Thu, 21 Jan 2021 01:03:41 GMT expires: - '-1' odata-version: @@ -25049,17 +27063,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25067,7 +27081,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:08 GMT + - Thu, 21 Jan 2021 01:03:43 GMT expires: - '-1' odata-version: @@ -25102,17 +27116,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25120,7 +27134,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:10 GMT + - Thu, 21 Jan 2021 01:03:45 GMT expires: - '-1' odata-version: @@ -25155,17 +27169,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25173,7 +27187,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:12 GMT + - Thu, 21 Jan 2021 01:03:47 GMT expires: - '-1' odata-version: @@ -25208,17 +27222,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25226,7 +27240,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:14 GMT + - Thu, 21 Jan 2021 01:03:49 GMT expires: - '-1' odata-version: @@ -25261,17 +27275,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25279,7 +27293,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:16 GMT + - Thu, 21 Jan 2021 01:03:51 GMT expires: - '-1' odata-version: @@ -25314,17 +27328,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25332,7 +27346,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:19 GMT + - Thu, 21 Jan 2021 01:03:54 GMT expires: - '-1' odata-version: @@ -25367,17 +27381,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25385,7 +27399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:21 GMT + - Thu, 21 Jan 2021 01:03:56 GMT expires: - '-1' odata-version: @@ -25420,17 +27434,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25438,7 +27452,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:23 GMT + - Thu, 21 Jan 2021 01:03:58 GMT expires: - '-1' odata-version: @@ -25473,17 +27487,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25491,7 +27505,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:25 GMT + - Thu, 21 Jan 2021 01:04:00 GMT expires: - '-1' odata-version: @@ -25526,17 +27540,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25544,7 +27558,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:27 GMT + - Thu, 21 Jan 2021 01:04:02 GMT expires: - '-1' odata-version: @@ -25579,17 +27593,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25597,7 +27611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:29 GMT + - Thu, 21 Jan 2021 01:04:04 GMT expires: - '-1' odata-version: @@ -25632,17 +27646,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25650,7 +27664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:31 GMT + - Thu, 21 Jan 2021 01:04:06 GMT expires: - '-1' odata-version: @@ -25685,17 +27699,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25703,7 +27717,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:34 GMT + - Thu, 21 Jan 2021 01:04:08 GMT expires: - '-1' odata-version: @@ -25738,17 +27752,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25756,7 +27770,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:37 GMT + - Thu, 21 Jan 2021 01:04:11 GMT expires: - '-1' odata-version: @@ -25791,17 +27805,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25809,7 +27823,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:39 GMT + - Thu, 21 Jan 2021 01:04:13 GMT expires: - '-1' odata-version: @@ -25844,17 +27858,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25862,7 +27876,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:41 GMT + - Thu, 21 Jan 2021 01:04:15 GMT expires: - '-1' odata-version: @@ -25897,17 +27911,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25915,7 +27929,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:43 GMT + - Thu, 21 Jan 2021 01:04:17 GMT expires: - '-1' odata-version: @@ -25950,17 +27964,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25968,7 +27982,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:45 GMT + - Thu, 21 Jan 2021 01:04:19 GMT expires: - '-1' odata-version: @@ -26003,17 +28017,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26021,7 +28035,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:47 GMT + - Thu, 21 Jan 2021 01:04:21 GMT expires: - '-1' odata-version: @@ -26056,17 +28070,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26074,7 +28088,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:49 GMT + - Thu, 21 Jan 2021 01:04:23 GMT expires: - '-1' odata-version: @@ -26109,17 +28123,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26127,7 +28141,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:51 GMT + - Thu, 21 Jan 2021 01:04:25 GMT expires: - '-1' odata-version: @@ -26162,17 +28176,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26180,7 +28194,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:54 GMT + - Thu, 21 Jan 2021 01:04:27 GMT expires: - '-1' odata-version: @@ -26215,17 +28229,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26233,7 +28247,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:56 GMT + - Thu, 21 Jan 2021 01:04:30 GMT expires: - '-1' odata-version: @@ -26268,17 +28282,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26286,7 +28300,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:41:58 GMT + - Thu, 21 Jan 2021 01:04:32 GMT expires: - '-1' odata-version: @@ -26321,17 +28335,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26339,7 +28353,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:00 GMT + - Thu, 21 Jan 2021 01:04:34 GMT expires: - '-1' odata-version: @@ -26374,17 +28388,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26392,7 +28406,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:02 GMT + - Thu, 21 Jan 2021 01:04:36 GMT expires: - '-1' odata-version: @@ -26427,17 +28441,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26445,7 +28459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:04 GMT + - Thu, 21 Jan 2021 01:04:38 GMT expires: - '-1' odata-version: @@ -26480,17 +28494,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26498,7 +28512,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:06 GMT + - Thu, 21 Jan 2021 01:04:40 GMT expires: - '-1' odata-version: @@ -26533,17 +28547,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26551,7 +28565,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:08 GMT + - Thu, 21 Jan 2021 01:04:42 GMT expires: - '-1' odata-version: @@ -26586,17 +28600,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26604,7 +28618,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:10 GMT + - Thu, 21 Jan 2021 01:04:44 GMT expires: - '-1' odata-version: @@ -26639,17 +28653,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26657,7 +28671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:13 GMT + - Thu, 21 Jan 2021 01:04:46 GMT expires: - '-1' odata-version: @@ -26692,17 +28706,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26710,7 +28724,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:15 GMT + - Thu, 21 Jan 2021 01:04:49 GMT expires: - '-1' odata-version: @@ -26745,17 +28759,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26763,7 +28777,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:17 GMT + - Thu, 21 Jan 2021 01:04:51 GMT expires: - '-1' odata-version: @@ -26798,17 +28812,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26816,7 +28830,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:19 GMT + - Thu, 21 Jan 2021 01:04:53 GMT expires: - '-1' odata-version: @@ -26851,17 +28865,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26869,7 +28883,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:21 GMT + - Thu, 21 Jan 2021 01:04:56 GMT expires: - '-1' odata-version: @@ -26904,17 +28918,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26922,7 +28936,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:23 GMT + - Thu, 21 Jan 2021 01:04:58 GMT expires: - '-1' odata-version: @@ -26957,17 +28971,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26975,7 +28989,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:25 GMT + - Thu, 21 Jan 2021 01:05:00 GMT expires: - '-1' odata-version: @@ -27010,17 +29024,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27028,7 +29042,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:28 GMT + - Thu, 21 Jan 2021 01:05:02 GMT expires: - '-1' odata-version: @@ -27063,17 +29077,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27081,7 +29095,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:30 GMT + - Thu, 21 Jan 2021 01:05:05 GMT expires: - '-1' odata-version: @@ -27116,17 +29130,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27134,7 +29148,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:32 GMT + - Thu, 21 Jan 2021 01:05:07 GMT expires: - '-1' odata-version: @@ -27169,17 +29183,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27187,7 +29201,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:34 GMT + - Thu, 21 Jan 2021 01:05:09 GMT expires: - '-1' odata-version: @@ -27222,17 +29236,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27240,7 +29254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:36 GMT + - Thu, 21 Jan 2021 01:05:11 GMT expires: - '-1' odata-version: @@ -27275,17 +29289,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27293,7 +29307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:38 GMT + - Thu, 21 Jan 2021 01:05:13 GMT expires: - '-1' odata-version: @@ -27328,17 +29342,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27346,7 +29360,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:40 GMT + - Thu, 21 Jan 2021 01:05:15 GMT expires: - '-1' odata-version: @@ -27381,17 +29395,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27399,7 +29413,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:42 GMT + - Thu, 21 Jan 2021 01:05:17 GMT expires: - '-1' odata-version: @@ -27434,17 +29448,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27452,7 +29466,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:44 GMT + - Thu, 21 Jan 2021 01:05:20 GMT expires: - '-1' odata-version: @@ -27487,17 +29501,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27505,7 +29519,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:47 GMT + - Thu, 21 Jan 2021 01:05:22 GMT expires: - '-1' odata-version: @@ -27540,17 +29554,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27558,7 +29572,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:49 GMT + - Thu, 21 Jan 2021 01:05:24 GMT expires: - '-1' odata-version: @@ -27593,17 +29607,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27611,7 +29625,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:51 GMT + - Thu, 21 Jan 2021 01:05:26 GMT expires: - '-1' odata-version: @@ -27646,17 +29660,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27664,7 +29678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:53 GMT + - Thu, 21 Jan 2021 01:05:28 GMT expires: - '-1' odata-version: @@ -27699,17 +29713,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27717,7 +29731,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:55 GMT + - Thu, 21 Jan 2021 01:05:30 GMT expires: - '-1' odata-version: @@ -27752,17 +29766,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27770,7 +29784,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:57 GMT + - Thu, 21 Jan 2021 01:05:32 GMT expires: - '-1' odata-version: @@ -27805,17 +29819,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27823,7 +29837,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:59 GMT + - Thu, 21 Jan 2021 01:05:34 GMT expires: - '-1' odata-version: @@ -27858,17 +29872,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27876,7 +29890,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:01 GMT + - Thu, 21 Jan 2021 01:05:36 GMT expires: - '-1' odata-version: @@ -27911,17 +29925,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27929,7 +29943,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:04 GMT + - Thu, 21 Jan 2021 01:05:39 GMT expires: - '-1' odata-version: @@ -27964,17 +29978,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27982,7 +29996,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:06 GMT + - Thu, 21 Jan 2021 01:05:41 GMT expires: - '-1' odata-version: @@ -28017,17 +30031,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28035,7 +30049,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:08 GMT + - Thu, 21 Jan 2021 01:05:43 GMT expires: - '-1' odata-version: @@ -28070,17 +30084,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28088,7 +30102,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:10 GMT + - Thu, 21 Jan 2021 01:05:45 GMT expires: - '-1' odata-version: @@ -28123,17 +30137,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28141,7 +30155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:12 GMT + - Thu, 21 Jan 2021 01:05:47 GMT expires: - '-1' odata-version: @@ -28176,17 +30190,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28194,7 +30208,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:14 GMT + - Thu, 21 Jan 2021 01:05:49 GMT expires: - '-1' odata-version: @@ -28229,17 +30243,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28247,7 +30261,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:16 GMT + - Thu, 21 Jan 2021 01:05:51 GMT expires: - '-1' odata-version: @@ -28282,17 +30296,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28300,7 +30314,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:18 GMT + - Thu, 21 Jan 2021 01:05:53 GMT expires: - '-1' odata-version: @@ -28335,17 +30349,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28353,7 +30367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:20 GMT + - Thu, 21 Jan 2021 01:05:56 GMT expires: - '-1' odata-version: @@ -28388,17 +30402,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28406,7 +30420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:23 GMT + - Thu, 21 Jan 2021 01:05:58 GMT expires: - '-1' odata-version: @@ -28441,17 +30455,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28459,7 +30473,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:25 GMT + - Thu, 21 Jan 2021 01:06:00 GMT expires: - '-1' odata-version: @@ -28494,17 +30508,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28512,7 +30526,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:27 GMT + - Thu, 21 Jan 2021 01:06:02 GMT expires: - '-1' odata-version: @@ -28547,17 +30561,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28565,7 +30579,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:29 GMT + - Thu, 21 Jan 2021 01:06:04 GMT expires: - '-1' odata-version: @@ -28600,17 +30614,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28618,7 +30632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:31 GMT + - Thu, 21 Jan 2021 01:06:06 GMT expires: - '-1' odata-version: @@ -28653,17 +30667,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28671,7 +30685,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:33 GMT + - Thu, 21 Jan 2021 01:06:08 GMT expires: - '-1' odata-version: @@ -28706,17 +30720,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28724,7 +30738,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:35 GMT + - Thu, 21 Jan 2021 01:06:10 GMT expires: - '-1' odata-version: @@ -28759,17 +30773,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28777,7 +30791,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:37 GMT + - Thu, 21 Jan 2021 01:06:13 GMT expires: - '-1' odata-version: @@ -28812,17 +30826,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28830,7 +30844,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:40 GMT + - Thu, 21 Jan 2021 01:06:15 GMT expires: - '-1' odata-version: @@ -28865,17 +30879,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28883,7 +30897,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:42 GMT + - Thu, 21 Jan 2021 01:06:17 GMT expires: - '-1' odata-version: @@ -28918,17 +30932,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28936,7 +30950,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:44 GMT + - Thu, 21 Jan 2021 01:06:19 GMT expires: - '-1' odata-version: @@ -28971,17 +30985,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28989,7 +31003,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:46 GMT + - Thu, 21 Jan 2021 01:06:21 GMT expires: - '-1' odata-version: @@ -29024,17 +31038,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29042,7 +31056,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:48 GMT + - Thu, 21 Jan 2021 01:06:23 GMT expires: - '-1' odata-version: @@ -29077,17 +31091,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29095,7 +31109,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:50 GMT + - Thu, 21 Jan 2021 01:06:25 GMT expires: - '-1' odata-version: @@ -29130,17 +31144,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29148,7 +31162,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:52 GMT + - Thu, 21 Jan 2021 01:06:27 GMT expires: - '-1' odata-version: @@ -29183,17 +31197,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29201,7 +31215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:54 GMT + - Thu, 21 Jan 2021 01:06:29 GMT expires: - '-1' odata-version: @@ -29236,17 +31250,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29254,7 +31268,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:56 GMT + - Thu, 21 Jan 2021 01:06:32 GMT expires: - '-1' odata-version: @@ -29289,17 +31303,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29307,7 +31321,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:43:59 GMT + - Thu, 21 Jan 2021 01:06:34 GMT expires: - '-1' odata-version: @@ -29342,17 +31356,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29360,7 +31374,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:01 GMT + - Thu, 21 Jan 2021 01:06:36 GMT expires: - '-1' odata-version: @@ -29395,17 +31409,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29413,7 +31427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:04 GMT + - Thu, 21 Jan 2021 01:06:38 GMT expires: - '-1' odata-version: @@ -29448,17 +31462,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29466,7 +31480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:06 GMT + - Thu, 21 Jan 2021 01:06:40 GMT expires: - '-1' odata-version: @@ -29501,17 +31515,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29519,7 +31533,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:08 GMT + - Thu, 21 Jan 2021 01:06:42 GMT expires: - '-1' odata-version: @@ -29554,17 +31568,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29572,7 +31586,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:10 GMT + - Thu, 21 Jan 2021 01:06:44 GMT expires: - '-1' odata-version: @@ -29607,17 +31621,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29625,7 +31639,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:12 GMT + - Thu, 21 Jan 2021 01:06:46 GMT expires: - '-1' odata-version: @@ -29660,17 +31674,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29678,7 +31692,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:14 GMT + - Thu, 21 Jan 2021 01:06:49 GMT expires: - '-1' odata-version: @@ -29713,17 +31727,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29731,7 +31745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:16 GMT + - Thu, 21 Jan 2021 01:06:51 GMT expires: - '-1' odata-version: @@ -29766,17 +31780,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29784,7 +31798,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:18 GMT + - Thu, 21 Jan 2021 01:06:53 GMT expires: - '-1' odata-version: @@ -29819,17 +31833,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29837,7 +31851,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:21 GMT + - Thu, 21 Jan 2021 01:06:55 GMT expires: - '-1' odata-version: @@ -29872,17 +31886,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29890,7 +31904,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:23 GMT + - Thu, 21 Jan 2021 01:06:57 GMT expires: - '-1' odata-version: @@ -29925,17 +31939,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29943,7 +31957,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:25 GMT + - Thu, 21 Jan 2021 01:06:59 GMT expires: - '-1' odata-version: @@ -29978,17 +31992,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29996,7 +32010,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:27 GMT + - Thu, 21 Jan 2021 01:07:01 GMT expires: - '-1' odata-version: @@ -30031,17 +32045,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30049,7 +32063,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:29 GMT + - Thu, 21 Jan 2021 01:07:03 GMT expires: - '-1' odata-version: @@ -30084,17 +32098,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30102,7 +32116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:31 GMT + - Thu, 21 Jan 2021 01:07:05 GMT expires: - '-1' odata-version: @@ -30137,17 +32151,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30155,7 +32169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:33 GMT + - Thu, 21 Jan 2021 01:07:07 GMT expires: - '-1' odata-version: @@ -30190,17 +32204,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30208,7 +32222,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:35 GMT + - Thu, 21 Jan 2021 01:07:10 GMT expires: - '-1' odata-version: @@ -30243,17 +32257,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30261,7 +32275,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:37 GMT + - Thu, 21 Jan 2021 01:07:12 GMT expires: - '-1' odata-version: @@ -30296,17 +32310,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30314,7 +32328,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:40 GMT + - Thu, 21 Jan 2021 01:07:14 GMT expires: - '-1' odata-version: @@ -30349,17 +32363,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30367,7 +32381,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:42 GMT + - Thu, 21 Jan 2021 01:07:16 GMT expires: - '-1' odata-version: @@ -30402,17 +32416,17 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c58e3542-2519-402c-b5bb-d640a17ac492\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7a23a6aa-c105-4186-a96e-3103927e5980\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c58e3542-2519-402c-b5bb-d640a17ac492?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30420,7 +32434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:44 GMT + - Thu, 21 Jan 2021 01:07:18 GMT expires: - '-1' odata-version: @@ -30455,14 +32469,14 @@ interactions: - -g -a -n --scale-units --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-13T01:24:23.3396525Z\",\"lastModified\":\"2021-01-13T01:44:43.0884102Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"created\":\"2021-01-21T00:45:40.3793388Z\",\"lastModified\":\"2021-01-21T01:07:18.0355544Z\"\r\n \ }\r\n}" headers: cache-control: @@ -30472,7 +32486,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:44 GMT + - Thu, 21 Jan 2021 01:07:18 GMT expires: - '-1' odata-version: @@ -30509,7 +32523,7 @@ interactions: - -g -a -n --no-wait User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -30519,17 +32533,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/797343e2-3602-4683-ab2a-6960844bfb60?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/25000392-c865-49b3-a0c4-c52848181e45?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:44:46 GMT + - Thu, 21 Jan 2021 01:07:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/797343e2-3602-4683-ab2a-6960844bfb60?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/25000392-c865-49b3-a0c4-c52848181e45?api-version=2020-05-01 pragma: - no-cache server: @@ -30558,7 +32572,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -30567,17 +32581,17 @@ interactions: body: string: "{\r\n \"name\":\"strep000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004\",\"type\":\"Microsoft.Media/mediaservices/streamingEndpoints\",\"location\":\"East US 2\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"scaleUnits\":12,\"availabilitySetName\":null,\"cdnEnabled\":false,\"cdnProvider\":null,\"cdnProfile\":\"\",\"maxCacheAge\":null,\"customHostNames\":[\r\n - \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopping\",\"created\":\"2021-01-13T01:24:23.3396525Z\",\"lastModified\":\"2021-01-13T01:44:46.521382Z\"\r\n + \ \r\n ],\"accessControl\":null,\"crossSiteAccessPolicies\":null,\"hostName\":\"strep000004-ams000003-use22.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopping\",\"created\":\"2021-01-21T00:45:40.3793388Z\",\"lastModified\":\"2021-01-21T01:07:21.4418391Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '869' + - '870' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:46 GMT + - Thu, 21 Jan 2021 01:07:21 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml index 848e47764d8..6dda9284798 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_update.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"3b5d960b-a459-4564-a873-c5add1ce6379\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"35f45746-8b5f-4e84-a455-7a0fac100cb4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:55 GMT + - Thu, 21 Jan 2021 00:46:03 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -75,7 +75,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -83,7 +83,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"3b5d960b-a459-4564-a873-c5add1ce6379\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"35f45746-8b5f-4e84-a455-7a0fac100cb4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -96,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:56 GMT + - Thu, 21 Jan 2021 00:46:04 GMT expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -163,11 +163,11 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.8763938Z\",\"lastModified\":\"2021-01-13T01:24:58.8763938Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"InProgress\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0003066Z\",\"lastModified\":\"2021-01-21T00:46:07.0003066Z\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -175,11 +175,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:58 GMT + - Thu, 21 Jan 2021 00:46:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -211,17 +211,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"52f4f4b2-7bb6-466e-a6cf-65f0846972ab\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n + string: "{\r\n \"name\":\"c430700f-6bbf-4da7-9830-4634a505c9ad\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"064863c1-08e4-4cd6-b561-f00d975b4141\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -229,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:02 GMT + - Thu, 21 Jan 2021 00:46:10 GMT expires: - '-1' odata-version: @@ -265,17 +265,17 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"52f4f4b2-7bb6-466e-a6cf-65f0846972ab\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n + string: "{\r\n \"name\":\"c430700f-6bbf-4da7-9830-4634a505c9ad\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"064863c1-08e4-4cd6-b561-f00d975b4141\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/52f4f4b2-7bb6-466e-a6cf-65f0846972ab?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c430700f-6bbf-4da7-9830-4634a505c9ad?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -283,7 +283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:04 GMT + - Thu, 21 Jan 2021 00:46:12 GMT expires: - '-1' odata-version: @@ -319,7 +319,7 @@ interactions: --tags --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingEndpoints/strep000004?api-version=2020-05-01 response: @@ -334,17 +334,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:10.7566514Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1632' + - '1633' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:04 GMT + - Thu, 21 Jan 2021 00:46:12 GMT expires: - '-1' odata-version: @@ -379,7 +379,7 @@ interactions: - -g -a -n --add User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -396,17 +396,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:10.7566514Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1632' + - '1633' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:05 GMT + - Thu, 21 Jan 2021 00:46:13 GMT expires: - '-1' odata-version: @@ -442,7 +442,7 @@ interactions: --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -459,17 +459,17 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:02.626267Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:10.7566514Z\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1632' + - '1633' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:07 GMT + - Thu, 21 Jan 2021 00:46:14 GMT expires: - '-1' odata-version: @@ -519,7 +519,7 @@ interactions: --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -546,7 +546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:08 GMT + - Thu, 21 Jan 2021 00:46:16 GMT expires: - '-1' odata-version: @@ -564,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -583,7 +583,7 @@ interactions: - -g -a -n --ips --disable-cdn User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -600,7 +600,7 @@ interactions: \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:09.3727817Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:16.4927168Z\"\r\n \ }\r\n}" headers: cache-control: @@ -610,7 +610,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:10 GMT + - Thu, 21 Jan 2021 00:46:17 GMT expires: - '-1' odata-version: @@ -662,7 +662,7 @@ interactions: - -g -a -n --ips --disable-cdn User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -694,7 +694,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:12 GMT + - Thu, 21 Jan 2021 00:46:19 GMT expires: - '-1' odata-version: @@ -712,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -731,7 +731,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -753,7 +753,7 @@ interactions: path='/' include-subpaths='false' />\\r\\n \\r\\n \ \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-13T01:24:58.9075802Z\",\"lastModified\":\"2021-01-13T01:25:12.2640615Z\"\r\n + \ \\r\\n\"\r\n },\"hostName\":\"strep000004-ams000003-aueas.streaming.media.azure.net\",\"freeTrialEndTime\":\"0001-01-01T00:00:00Z\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"created\":\"2021-01-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:19.3577967Z\"\r\n \ }\r\n}" headers: cache-control: @@ -763,7 +763,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:13 GMT + - Thu, 21 Jan 2021 00:46:20 GMT expires: - '-1' odata-version: @@ -800,7 +800,7 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -810,17 +810,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:25:15 GMT + - Thu, 21 Jan 2021 00:46:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpoints/strep000004/operationlocations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 pragma: - no-cache server: @@ -849,17 +849,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"41d5ba8c-5916-42db-b1f1-80a0ef85636c\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"58bb6602-3377-4369-b28d-769fcadf0571\"\r\n + string: "{\r\n \"name\":\"5cff62d9-6982-4cdc-ad90-f4aabf4a8324\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"064863c1-08e4-4cd6-b561-f00d975b4141\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -867,7 +867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:18 GMT + - Thu, 21 Jan 2021 00:46:24 GMT expires: - '-1' odata-version: @@ -902,17 +902,17 @@ interactions: - -g -a -n User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"41d5ba8c-5916-42db-b1f1-80a0ef85636c\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"5cff62d9-6982-4cdc-ad90-f4aabf4a8324\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/41d5ba8c-5916-42db-b1f1-80a0ef85636c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -920,7 +920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:20 GMT + - Thu, 21 Jan 2021 00:46:26 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml index dcac68e3d9d..0339d775089 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"4270e524-9370-40ed-9610-12bd15b67643\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"f25f003f-e0e0-4918-8e69-cc360911a451\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:14 GMT + - Thu, 21 Jan 2021 04:08:27 GMT expires: - '-1' odata-version: @@ -77,7 +77,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -85,7 +85,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"a03781cb-2924-483d-8f95-68e725f3b777\",\"created\":\"2021-01-13T01:45:15.71Z\",\"lastModified\":\"2021-01-13T01:45:15.71Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"f599daa6-352a-45ad-8146-aebfcee954c3\",\"created\":\"2021-01-21T04:08:28.35Z\",\"lastModified\":\"2021-01-21T04:08:28.35Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:16 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -133,7 +133,7 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -141,18 +141,18 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000005\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:45:18.614031Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-21T04:08:31.2670576Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":true,\"dash\":false,\"hls\":false,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '516' + - '517' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:18 GMT + - Thu, 21 Jan 2021 04:08:31 GMT expires: - '-1' odata-version: @@ -166,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -192,7 +192,7 @@ interactions: --alternative-media-id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -200,7 +200,7 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.1728438Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:32.9329576Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n}" headers: @@ -211,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:19 GMT + - Thu, 21 Jan 2021 04:08:32 GMT expires: - '-1' odata-version: @@ -244,7 +244,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -252,7 +252,7 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.173Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:32.933Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n}" headers: @@ -263,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:20 GMT + - Thu, 21 Jan 2021 04:08:33 GMT expires: - '-1' odata-version: @@ -298,7 +298,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -317,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:45:22 GMT + - Thu, 21 Jan 2021 04:08:35 GMT expires: - '-1' pragma: @@ -346,7 +346,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -354,7 +354,7 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:45:20.173Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:32.933Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: @@ -365,7 +365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:22 GMT + - Thu, 21 Jan 2021 04:08:37 GMT expires: - '-1' odata-version: @@ -402,7 +402,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -419,7 +419,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:45:24 GMT + - Thu, 21 Jan 2021 04:08:37 GMT expires: - '-1' odata-version: @@ -458,7 +458,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -472,7 +472,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:45:25 GMT + - Thu, 21 Jan 2021 04:08:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml index e230da9b759..952324af461 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_list_content_keys.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"d6761540-8dfd-4785-80eb-694587d4d8d7\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"c2a9187d-6dbc-425a-9e63-24ca7aab9527\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:52 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -77,7 +77,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -85,7 +85,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"0acebbb7-55a1-4cbe-9250-43fcc4e95bff\",\"created\":\"2021-01-13T01:24:54.057Z\",\"lastModified\":\"2021-01-13T01:24:54.057Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"dcf63f3c-2689-42d4-b1ca-c3dcba0e22c7\",\"created\":\"2021-01-21T04:08:30.017Z\",\"lastModified\":\"2021-01-21T04:08:30.017Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:54 GMT + - Thu, 21 Jan 2021 04:08:29 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: - -a -n -g --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -142,8 +142,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000006\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"ac361059-61f5-46f2-8cc2-86ba2465702d\",\"created\":\"2021-01-13T01:24:55.323Z\",\"lastModified\":\"2021-01-13T01:24:55.323Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"6d82050c-08d2-4042-b4f7-65bbe89a9133\",\"name\":\"testOption\",\"configuration\":{\r\n + \ \"policyId\":\"983c197b-45d0-4e7e-a044-6fddd99b4191\",\"created\":\"2021-01-21T04:08:31.217Z\",\"lastModified\":\"2021-01-21T04:08:31.217Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"e103334c-e319-4226-8fab-1261ab21322f\",\"name\":\"testOption\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -155,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:55 GMT + - Thu, 21 Jan 2021 04:08:31 GMT expires: - '-1' odata-version: @@ -173,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -197,7 +197,7 @@ interactions: - -n -a -g --content-key-policy-name --streaming-policy-name --asset-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -205,8 +205,8 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000005\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:24:56.1039387Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"780f18f4-9d35-4b97-a69c-6714ddf5d421\",\"streamingPolicyName\":\"Predefined_ClearKey\",\"defaultContentKeyPolicyName\":\"pn000006\",\"contentKeys\":[\r\n - \ {\r\n \"id\":\"7a0021d0-98b8-4377-806a-47cba09c7cf4\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"tracks\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:32.0632543Z\",\"endTime\":\"9999-12-31T23:59:59.9999999Z\",\"streamingLocatorId\":\"1a34e639-afe4-4827-a039-375e3981b3a3\",\"streamingPolicyName\":\"Predefined_ClearKey\",\"defaultContentKeyPolicyName\":\"pn000006\",\"contentKeys\":[\r\n + \ {\r\n \"id\":\"74e02fd1-1728-4c78-aa43-d60c0134b3b3\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"filters\":[\r\n \r\n ]\r\n \ }\r\n}" headers: @@ -217,7 +217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:24:59 GMT + - Thu, 21 Jan 2021 04:08:35 GMT expires: - '-1' odata-version: @@ -252,14 +252,14 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/streamingLocators/sln000005/listContentKeys?api-version=2020-05-01 response: body: - string: "{\r\n \"contentKeys\":[\r\n {\r\n \"id\":\"7a0021d0-98b8-4377-806a-47cba09c7cf4\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"value\":\"Zc8Q9VeldEk+7KyR5eiFBw==\",\"policyName\":\"pn000006\",\"tracks\":[\r\n + string: "{\r\n \"contentKeys\":[\r\n {\r\n \"id\":\"74e02fd1-1728-4c78-aa43-d60c0134b3b3\",\"type\":\"EnvelopeEncryption\",\"labelReferenceInStreamingPolicy\":\"clearKeyDefault\",\"value\":\"vCpyk4q/2REItr3BrR/dUA==\",\"policyName\":\"pn000006\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ]\r\n}" headers: cache-control: @@ -269,7 +269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:02 GMT + - Thu, 21 Jan 2021 04:08:38 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml index 4d2e1dccedc..8720cfdbbd8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_content_keys.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"ec1ad47b-a757-46cd-b902-52d1eb14cfe1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"d9ea291e-fdb8-4e31-b99f-8c8bc7671be2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:07 GMT + - Thu, 21 Jan 2021 04:08:25 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -77,7 +77,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -85,17 +85,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"85c54ed4-f006-41b8-b078-e62e6f2ced74\",\"created\":\"2021-01-13T01:25:08.133Z\",\"lastModified\":\"2021-01-13T01:25:08.133Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"523ca009-6a47-49f2-bb2d-99eac13fb5e8\",\"created\":\"2021-01-21T04:08:26.48Z\",\"lastModified\":\"2021-01-21T04:08:26.48Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:07 GMT + - Thu, 21 Jan 2021 04:08:26 GMT expires: - '-1' odata-version: @@ -140,7 +140,7 @@ interactions: --cenc-protocols --cbcs-fair-play-template --cenc-play-ready-template --cenc-widevine-template User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -148,7 +148,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000005\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:25:08.7215965Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-21T04:08:27.0356806Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"testLabel2\"\r\n },\"keyToTrackMappings\":[\r\n @@ -170,7 +170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:08 GMT + - Thu, 21 Jan 2021 04:08:26 GMT expires: - '-1' odata-version: @@ -213,7 +213,7 @@ interactions: --alternative-media-id --content-keys User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -221,7 +221,7 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.2533579Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:27.5809188Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ {\r\n \"id\":\"88888888-0000-0000-0000-000000000002\",\"type\":\"CommonEncryptionCenc\",\"labelReferenceInStreamingPolicy\":\"testLabel2\",\"tracks\":[\r\n \ \r\n ]\r\n },{\r\n \"id\":\"88888888-0000-0000-0000-000000000001\",\"type\":\"CommonEncryptionCbcs\",\"labelReferenceInStreamingPolicy\":\"testLabel1\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n @@ -234,7 +234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:09 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -267,7 +267,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -275,7 +275,7 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.253Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:27.58Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ {\r\n \"id\":\"88888888-0000-0000-0000-000000000001\",\"type\":\"CommonEncryptionCbcs\",\"labelReferenceInStreamingPolicy\":\"testLabel1\",\"tracks\":[\r\n \ \r\n ]\r\n },{\r\n \"id\":\"88888888-0000-0000-0000-000000000002\",\"type\":\"CommonEncryptionCenc\",\"labelReferenceInStreamingPolicy\":\"testLabel2\",\"tracks\":[\r\n \ \r\n ]\r\n }\r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n @@ -284,11 +284,11 @@ interactions: cache-control: - no-cache content-length: - - '1035' + - '1034' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:09 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -323,7 +323,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -331,18 +331,18 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000006\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:25:09.253Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:27.58Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000003\",\"streamingPolicyName\":\"spn000005\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000004\",\"filters\":[\r\n \ \r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '746' + - '745' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:10 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -379,7 +379,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -399,7 +399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:10 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -438,7 +438,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -452,7 +452,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:25:11 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml index 3af458b107e..24206de9683 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_locator_with_filters.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"fc4c3636-cb23-4a5e-8e10-3c892878ba7a\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"00c70383-75fe-4ba6-9d83-cbcb53a2d792\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:26 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -77,7 +77,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -85,7 +85,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000004\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"9e690cbd-4351-476b-8adc-b2e88fef0511\",\"created\":\"2021-01-13T01:42:28.31Z\",\"lastModified\":\"2021-01-13T01:42:28.31Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"8c951c82-674b-48e3-b924-5ee3a0eadb9d\",\"created\":\"2021-01-21T04:08:29.57Z\",\"lastModified\":\"2021-01-21T04:08:29.57Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:29 GMT + - Thu, 21 Jan 2021 04:08:30 GMT expires: - '-1' odata-version: @@ -109,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -132,7 +132,7 @@ interactions: - -a --asset-name -g -n --first-quality User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -150,7 +150,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:32 GMT + - Thu, 21 Jan 2021 04:08:33 GMT expires: - '-1' odata-version: @@ -164,7 +164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -188,7 +188,7 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -196,18 +196,18 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:42:34.9735182Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-21T04:08:35.73933Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":true,\"dash\":false,\"hls\":false,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '517' + - '515' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:34 GMT + - Thu, 21 Jan 2021 04:08:35 GMT expires: - '-1' odata-version: @@ -221,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -248,7 +248,7 @@ interactions: --alternative-media-id --filters User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -256,18 +256,18 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.74931Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:37.2289128Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '702' + - '704' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:37 GMT + - Thu, 21 Jan 2021 04:08:38 GMT expires: - '-1' odata-version: @@ -300,7 +300,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -308,7 +308,7 @@ interactions: response: body: string: "{\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.75Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:37.23Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n}" headers: @@ -319,7 +319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:39 GMT + - Thu, 21 Jan 2021 04:08:39 GMT expires: - '-1' odata-version: @@ -354,7 +354,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -362,7 +362,7 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"sln000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingLocators/sln000007\",\"type\":\"Microsoft.Media/mediaservices/streamingLocators\",\"properties\":{\r\n - \ \"assetName\":\"asset000004\",\"created\":\"2021-01-13T01:42:36.75Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n + \ \"assetName\":\"asset000004\",\"created\":\"2021-01-21T04:08:37.23Z\",\"startTime\":\"2018-03-29T10:00:00Z\",\"endTime\":\"2018-03-29T12:00:00Z\",\"streamingLocatorId\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"spn000006\",\"contentKeys\":[\r\n \ \r\n ],\"alternativeMediaId\":\"88888888-0000-0000-0000-000000000002\",\"filters\":[\r\n \ \"filter000005\"\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: @@ -373,7 +373,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:40 GMT + - Thu, 21 Jan 2021 04:08:40 GMT expires: - '-1' odata-version: @@ -410,7 +410,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -427,7 +427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:42:42 GMT + - Thu, 21 Jan 2021 04:08:42 GMT expires: - '-1' odata-version: @@ -445,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -466,7 +466,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -480,7 +480,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:42:43 GMT + - Thu, 21 Jan 2021 04:08:44 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml index 569a0e5bcd7..95579fd845b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"f68b1040-64b2-4aa0-8d80-5709373aeae0\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"6915a574-be81-4541-933b-45f11251c19e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:26 GMT + - Thu, 21 Jan 2021 04:11:53 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -78,7 +78,7 @@ interactions: - -a -n -g --no-encryption-protocols User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,18 +86,18 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-21T04:11:55.0189753Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '516' + - '517' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:27 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -111,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -130,7 +130,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -138,18 +138,18 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n + \ \"created\":\"2021-01-21T04:11:55.0189753Z\",\"noEncryption\":{\r\n \"enabledProtocols\":{\r\n \ \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '516' + - '517' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:27 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -184,7 +184,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -229,18 +229,18 @@ interactions: \ },\"keyToTrackMappings\":[\r\n \r\n ]\r\n \ },\"drm\":{\r\n \"fairPlay\":{\r\n \"allowPersistentLicense\":false\r\n \ }\r\n }\r\n }\r\n }\r\n },{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:44:27.431716Z\",\"noEncryption\":{\r\n + \ \"created\":\"2021-01-21T04:11:55.0189753Z\",\"noEncryption\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":false\r\n \ }\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '5405' + - '5406' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:44:27 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -277,7 +277,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -291,7 +291,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:44:28 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml index a34c67d934a..687dc7fe94e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"735d603d-d9fe-4ff8-9be8-d7935cbf8efc\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"866ac03f-8584-452d-a3e5-79ecaf2b62c0\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:24 GMT + - Thu, 21 Jan 2021 04:11:53 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -82,7 +82,7 @@ interactions: --cbcs-fair-play-allow-persistent-license User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -90,7 +90,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:25:26.5320748Z\",\"commonEncryptionCbcs\":{\r\n + \ \"created\":\"2021-01-21T04:11:55.0085619Z\",\"commonEncryptionCbcs\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -104,7 +104,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:25 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml index 3eb3c5289d2..e7c260a59b4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cbcs_default_drm.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"158b0ddc-6a14-434c-989d-9df72036b2d5\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"9664d304-ae7d-44f3-997c-9a215bb61033\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:46 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -80,7 +80,7 @@ interactions: - -a -n -g --cbcs-protocols --cbcs-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -88,7 +88,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:25:48.3314577Z\",\"commonEncryptionCbcs\":{\r\n + \ \"created\":\"2021-01-21T04:11:55.707609Z\",\"commonEncryptionCbcs\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -98,11 +98,11 @@ interactions: cache-control: - no-cache content-length: - - '783' + - '782' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:47 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -116,7 +116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml index 7537e9654a6..066c527b8f5 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"5e4df3c1-d1c6-4584-84d9-9503b178b359\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"f02a4bca-0a3c-449e-a644-ba5b9fe9e76b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:35 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -89,7 +89,7 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -97,8 +97,8 @@ interactions: response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"22136366-5f40-4fd3-bf46-0e2ffa235fe7\",\"created\":\"2021-01-13T01:25:36.94Z\",\"lastModified\":\"2021-01-13T01:25:36.94Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"076a7a36-9e44-4381-9fec-7e91375b6a42\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"d5da6ff5-efc0-4bcc-b543-7d4be710bd52\",\"created\":\"2021-01-21T04:11:56.327Z\",\"lastModified\":\"2021-01-21T04:11:56.327Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ac8fe594-25e1-43a7-a237-6abdb44084ed\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -112,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '1931' + - '1933' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:36 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 200 message: OK @@ -159,7 +159,7 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -167,8 +167,8 @@ interactions: response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a4645ebb-6607-437e-a167-222424aa0604\",\"created\":\"2021-01-13T01:25:37.633Z\",\"lastModified\":\"2021-01-13T01:25:37.633Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"d918e419-25e0-42e4-8ab2-296f54b51d5f\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"d6fc4811-59f3-429d-8523-030b0995de7e\",\"created\":\"2021-01-21T04:11:57.05Z\",\"lastModified\":\"2021-01-21T04:11:57.05Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"6fda6a6b-299c-4e99-acb1-ae3e78438ec2\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -176,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '847' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:37 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -198,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -237,7 +237,7 @@ interactions: --cenc-play-ready-attributes --cenc-widevine-template User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -245,7 +245,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:25:38.382927Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-21T04:11:57.7532541Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -274,11 +274,11 @@ interactions: cache-control: - no-cache content-length: - - '2393' + - '2394' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:37 GMT + - Thu, 21 Jan 2021 04:11:57 GMT expires: - '-1' odata-version: @@ -292,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml index 5cb3de24a9a..a9aff28393a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_default_drm.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"2e0dd05a-38a1-49e7-bf7b-cf300850ef70\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"b506ef4a-f07b-4c2b-bb55-eefb52bbd90b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:48 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -89,7 +89,7 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -97,8 +97,8 @@ interactions: response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"fde9a060-2497-4ea6-aeec-800f5105d922\",\"created\":\"2021-01-13T01:25:49.337Z\",\"lastModified\":\"2021-01-13T01:25:49.337Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"0f75ba37-8c8d-4a98-a6cb-7b6b76d16f50\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"c07edb55-149d-4ea2-b3a2-63a726d848c5\",\"created\":\"2021-01-21T04:11:55.407Z\",\"lastModified\":\"2021-01-21T04:11:55.407Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"34797d04-c218-42bc-989d-aaf7d890da50\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -116,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:48 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -159,7 +159,7 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -167,8 +167,8 @@ interactions: response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"a716fe65-d7fd-43ea-af54-40894e79595a\",\"created\":\"2021-01-13T01:25:50.01Z\",\"lastModified\":\"2021-01-13T01:25:50.01Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"512fcc8d-1ffa-448f-97e1-c2182df36736\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"62fe8803-a718-4e97-b888-bd6a65237c9a\",\"created\":\"2021-01-21T04:11:56.153Z\",\"lastModified\":\"2021-01-21T04:11:56.153Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"defe00a2-d442-417c-8418-47be601ec16d\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -176,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '847' + - '849' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:49 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -198,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -234,7 +234,7 @@ interactions: --cenc-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:25:50.6294279Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-21T04:11:56.8793405Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -274,7 +274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:25:50 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -288,7 +288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml index 4bf50d68f8f..eb1b2c08d7c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_cenc_disable_widevine.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"8d38a209-2f04-44bf-969a-65a5080a57bc\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"5314c88d-fc6b-43ec-beab-ad21e1c964cd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:03 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -89,7 +89,7 @@ interactions: - -a -n -g --description --open-restriction --play-ready-template --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -97,8 +97,8 @@ interactions: response: body: string: "{\r\n \"name\":\"ckp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/ckp\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"81b69857-cd81-41fa-81f7-8f2db37d54e7\",\"created\":\"2021-01-13T01:26:04.037Z\",\"lastModified\":\"2021-01-13T01:26:04.037Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"1f77de6d-9681-441b-8116-d54c26ad2614\",\"name\":\"pon000004\",\"configuration\":{\r\n + \ \"policyId\":\"23d31858-aa83-48cb-a88e-355d2c4abbe6\",\"created\":\"2021-01-21T04:11:55.973Z\",\"lastModified\":\"2021-01-21T04:11:55.973Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"205146d9-b089-4480-bb47-7066d0a4db78\",\"name\":\"pon000004\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -116,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:03 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -159,7 +159,7 @@ interactions: - -a -n -g --description --open-restriction --clear-key-configuration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -167,8 +167,8 @@ interactions: response: body: string: "{\r\n \"name\":\"demoPolicy15\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/demoPolicy15\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"b212056c-18bc-4836-a007-5100f4e74414\",\"created\":\"2021-01-13T01:26:04.61Z\",\"lastModified\":\"2021-01-13T01:26:04.61Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"dca9f993-2438-4abb-8fcc-5e7b5d3d4def\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"09dda2f6-41e2-4639-be39-aca94efb997a\",\"created\":\"2021-01-21T04:11:56.673Z\",\"lastModified\":\"2021-01-21T04:11:56.673Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"b8983fc0-8c2e-4f45-979a-5b210b98dcbd\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -176,11 +176,11 @@ interactions: cache-control: - no-cache content-length: - - '847' + - '849' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:04 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -234,7 +234,7 @@ interactions: --cenc-default-key-label --cenc-disable-widevine User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000006\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:05.2463437Z\",\"commonEncryptionCenc\":{\r\n + \ \"created\":\"2021-01-21T04:11:57.3725107Z\",\"commonEncryptionCenc\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":false,\"hls\":true,\"smoothStreaming\":true\r\n \ },\"clearTracks\":[\r\n {\r\n \"trackSelections\":[\r\n \ {\r\n \"property\":\"FourCC\",\"operation\":\"Equal\",\"value\":\"foo\"\r\n @@ -273,7 +273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:04 GMT + - Thu, 21 Jan 2021 04:11:57 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml index ff2ad153c24..439a9e2fcc5 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_policy_envelope.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"5457264d-d4ed-4fad-8ad4-bd2de464b2c9\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"caa539b4-6820-4abb-9fc1-055618b17afd\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:15 GMT + - Thu, 21 Jan 2021 04:12:21 GMT expires: - '-1' odata-version: @@ -79,7 +79,7 @@ interactions: - -a -n -g --envelope-protocols --envelope-template --envelope-default-key-label User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -87,7 +87,7 @@ interactions: response: body: string: "{\r\n \"name\":\"spn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingPolicies/spn000004\",\"type\":\"Microsoft.Media/mediaservices/streamingPolicies\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:16.6446093Z\",\"envelopeEncryption\":{\r\n + \ \"created\":\"2021-01-21T04:12:22.4671804Z\",\"envelopeEncryption\":{\r\n \ \"enabledProtocols\":{\r\n \"download\":false,\"dash\":true,\"hls\":true,\"smoothStreaming\":false\r\n \ },\"clearTracks\":[\r\n \r\n ],\"contentKeys\":{\r\n \"defaultKey\":{\r\n \ \"label\":\"label\"\r\n },\"keyToTrackMappings\":[\r\n \r\n @@ -101,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:15 GMT + - Thu, 21 Jan 2021 04:12:22 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml index 8b4be0b1e26..bec5d9055cc 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bde332e7-c3b6-418f-8ccd-a74ddcd36c7f\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"f436e0b1-be45-4988-af14-92b72918f06b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:12 GMT + - Thu, 21 Jan 2021 00:24:04 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -78,7 +78,7 @@ interactions: - -g -a --id User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -92,7 +92,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:19:14 GMT + - Thu, 21 Jan 2021 00:24:07 GMT expires: - '-1' pragma: @@ -125,7 +125,7 @@ interactions: - -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -139,7 +139,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:19:52 GMT + - Thu, 21 Jan 2021 00:24:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml index 13d97628a69..957695a0c78 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e144c3c6-0e1d-4380-9ed4-2de1d33ec7ca\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"f5779e14-b7ba-4233-97eb-c9b6ea55d028\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:16 GMT + - Thu, 21 Jan 2021 04:17:17 GMT expires: - '-1' odata-version: @@ -78,7 +78,7 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,7 +86,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:20.4056159Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -98,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:17 GMT + - Thu, 21 Jan 2021 04:17:20 GMT expires: - '-1' odata-version: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -131,7 +131,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -139,7 +139,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:20.4056159Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -151,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:18 GMT + - Thu, 21 Jan 2021 04:17:22 GMT expires: - '-1' odata-version: @@ -186,7 +186,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -205,7 +205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:26:20 GMT + - Thu, 21 Jan 2021 04:17:23 GMT expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: - --description -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:17.8754398Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:20.4056159Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -254,7 +254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:22 GMT + - Thu, 21 Jan 2021 04:17:24 GMT expires: - '-1' odata-version: @@ -295,7 +295,7 @@ interactions: - --description -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -303,7 +303,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-13T01:26:24.2541756Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-21T04:17:26.0445449Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -315,7 +315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:24 GMT + - Thu, 21 Jan 2021 04:17:25 GMT expires: - '-1' odata-version: @@ -333,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -352,7 +352,7 @@ interactions: - --preset -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -360,7 +360,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-13T01:26:24.2541756Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"description\":\"mydesc\",\"lastModified\":\"2021-01-21T04:17:26.0445449Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -372,7 +372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:25 GMT + - Thu, 21 Jan 2021 04:17:27 GMT expires: - '-1' odata-version: @@ -428,7 +428,7 @@ interactions: - --preset -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -436,7 +436,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:26.3362648Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:28.2788322Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -459,7 +459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:25 GMT + - Thu, 21 Jan 2021 04:17:28 GMT expires: - '-1' odata-version: @@ -477,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -496,7 +496,7 @@ interactions: - --output-index -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -504,7 +504,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:26.3362648Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:28.2788322Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n @@ -527,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:27 GMT + - Thu, 21 Jan 2021 04:17:30 GMT expires: - '-1' odata-version: @@ -582,7 +582,7 @@ interactions: - --output-index -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -590,7 +590,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:28.4950242Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:30.4972117Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -611,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:27 GMT + - Thu, 21 Jan 2021 04:17:30 GMT expires: - '-1' odata-version: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -648,7 +648,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -656,7 +656,7 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:17.8754398Z\",\"lastModified\":\"2021-01-13T01:26:28.4950242Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.4056159Z\",\"lastModified\":\"2021-01-21T04:17:30.4972117Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n @@ -678,7 +678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:29 GMT + - Thu, 21 Jan 2021 04:17:32 GMT expires: - '-1' odata-version: @@ -715,7 +715,7 @@ interactions: - -n -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -729,7 +729,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:26:31 GMT + - Thu, 21 Jan 2021 04:17:34 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml index 13dda2e870d..9249cd55504 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"0c386ea5-539d-456d-bc33-beba75d33551\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"4b850f54-3b62-4bbe-b78d-775fc6e0d3ce\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:29 GMT + - Thu, 21 Jan 2021 04:17:17 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -92,7 +92,7 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -100,7 +100,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:26:31.4250458Z\",\"lastModified\":\"2021-01-13T01:26:31.4250458Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:20.59717Z\",\"lastModified\":\"2021-01-21T04:17:20.59717Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.StandardEncoderPreset\",\"filters\":{\r\n \ \"rotation\":\"Auto\",\"overlays\":[\r\n {\r\n \"@odata.type\":\"#Microsoft.Media.VideoOverlay\",\"inputLabel\":\"videooverlay\",\"audioGainLevel\":1.0,\"opacity\":1.0\r\n @@ -117,11 +117,11 @@ interactions: cache-control: - no-cache content-length: - - '1987' + - '1983' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:30 GMT + - Thu, 21 Jan 2021 04:17:20 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml index ab7e2e4e9f8..cb459e43a46 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_create_custom_preset_invalid.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - India\",\"properties\":{\r\n \"mediaServiceId\":\"0759de94-c9f9-43cb-b725-242b74480773\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"dc1e937c-7657-4032-bf99-95bde1227d4e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:42 GMT + - Thu, 21 Jan 2021 04:17:18 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml index 70a58b50e6e..51ecc68c665 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_transform_output_add.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"32c1d210-c127-45e3-8f6f-07a32af6c1a9\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"0db51218-ee72-47d5-8d29-5d0a8a5646c0\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:58 GMT + - Thu, 21 Jan 2021 04:17:16 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -78,7 +78,7 @@ interactions: - -a -n -g --preset User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -86,7 +86,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:00.0439034Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:17.9679249Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -98,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:26:59 GMT + - Thu, 21 Jan 2021 04:17:18 GMT expires: - '-1' odata-version: @@ -131,7 +131,7 @@ interactions: - -a -n -g --preset --on-error --relative-priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -139,7 +139,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:00.0439034Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:17.9679249Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -151,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:00 GMT + - Thu, 21 Jan 2021 04:17:19 GMT expires: - '-1' odata-version: @@ -208,7 +208,7 @@ interactions: - -a -n -g --preset --on-error --relative-priority User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -216,7 +216,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:01.3661003Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:19.5399961Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -239,7 +239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:01 GMT + - Thu, 21 Jan 2021 04:17:19 GMT expires: - '-1' odata-version: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -276,7 +276,7 @@ interactions: - -a -n -g --preset --audio-language --audio-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -284,7 +284,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:01.3661003Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:19.5399961Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -307,7 +307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:01 GMT + - Thu, 21 Jan 2021 04:17:20 GMT expires: - '-1' odata-version: @@ -365,7 +365,7 @@ interactions: - -a -n -g --preset --audio-language --audio-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -373,7 +373,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:02.7358922Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:21.1766467Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -399,7 +399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:02 GMT + - Thu, 21 Jan 2021 04:17:20 GMT expires: - '-1' odata-version: @@ -436,7 +436,7 @@ interactions: - -a -n -g --preset --audio-language --insights-to-extract --video-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -444,7 +444,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:02.7358922Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:21.1766467Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -470,7 +470,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:03 GMT + - Thu, 21 Jan 2021 04:17:21 GMT expires: - '-1' odata-version: @@ -531,7 +531,7 @@ interactions: - -a -n -g --preset --audio-language --insights-to-extract --video-analysis-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -539,7 +539,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:04.0396979Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:22.718543Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -564,11 +564,11 @@ interactions: cache-control: - no-cache content-length: - - '2787' + - '2786' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:03 GMT + - Thu, 21 Jan 2021 04:17:22 GMT expires: - '-1' odata-version: @@ -605,7 +605,7 @@ interactions: - -a -n -g --preset --resolution User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -613,7 +613,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:04.0396979Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:22.718543Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -638,11 +638,11 @@ interactions: cache-control: - no-cache content-length: - - '2787' + - '2786' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:04 GMT + - Thu, 21 Jan 2021 04:17:23 GMT expires: - '-1' odata-version: @@ -706,7 +706,7 @@ interactions: - -a -n -g --preset --resolution User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -714,7 +714,7 @@ interactions: response: body: string: "{\r\n \"name\":\"tra000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/transforms/tra000004\",\"type\":\"Microsoft.Media/mediaservices/transforms\",\"properties\":{\r\n - \ \"created\":\"2021-01-13T01:27:00.0439034Z\",\"lastModified\":\"2021-01-13T01:27:05.4508919Z\",\"outputs\":[\r\n + \ \"created\":\"2021-01-21T04:17:17.9679249Z\",\"lastModified\":\"2021-01-21T04:17:24.2723958Z\",\"outputs\":[\r\n \ {\r\n \"onError\":\"StopProcessingJob\",\"relativePriority\":\"Normal\",\"preset\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.BuiltInStandardEncoderPreset\",\"presetName\":\"AACGoodQualityAudio\"\r\n \ }\r\n },{\r\n \"onError\":\"ContinueJob\",\"relativePriority\":\"High\",\"preset\":{\r\n @@ -745,7 +745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:27:05 GMT + - Thu, 21 Jan 2021 04:17:24 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml index fadb48c912c..f9b9745d9b1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_basic.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - India\",\"properties\":{\r\n \"mediaServiceId\":\"bfb128c8-3dc0-433e-b27e-5f2c63083d5c\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"aa728af2-86df-44e9-b09d-cc93f26217c4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:19:58 GMT + - Thu, 21 Jan 2021 00:33:58 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -79,7 +79,7 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -87,8 +87,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"c2e30b28-b1da-4d91-b3db-b83f808498c9\",\"created\":\"2021-01-13T01:20:01.187Z\",\"lastModified\":\"2021-01-13T01:20:01.187Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"0a94df46-15bc-459b-804e-bfd315968bb0\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"2f05ec34-9f98-4bd5-8f33-8caf432940e7\",\"created\":\"2021-01-21T00:34:00.323Z\",\"lastModified\":\"2021-01-21T00:34:00.323Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"6f13881b-c124-410c-bd98-f0ba1e2827c7\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -100,7 +100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:00 GMT + - Thu, 21 Jan 2021 00:34:00 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml index b10f10bde4d..7356111b1b4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"0c8ae761-09ff-4e11-8df6-91c2fe641952\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"0fc6f2b5-1bbd-48dc-8fab-f5f6018a8f1b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:28 GMT + - Thu, 21 Jan 2021 00:33:56 GMT expires: - '-1' odata-version: @@ -83,7 +83,7 @@ interactions: --rental-and-lease-key-type --rental-duration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -91,8 +91,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"5f723667-c752-4a5a-8388-ad7ebc3f6a1b\",\"created\":\"2021-01-13T01:20:30.737Z\",\"lastModified\":\"2021-01-13T01:20:30.737Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4cc479c0-f1bf-45ea-a2a4-5ab57ed9a755\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"64e40f16-711a-49a7-8cf9-7a38bc9aed18\",\"created\":\"2021-01-21T00:33:58.23Z\",\"lastModified\":\"2021-01-21T00:33:58.23Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"d8ce1e1c-e014-46a9-9099-08e2729c6132\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"Undefined\",\"rentalDuration\":60\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -100,11 +100,11 @@ interactions: cache-control: - no-cache content-length: - - '962' + - '960' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:31 GMT + - Thu, 21 Jan 2021 00:33:58 GMT expires: - '-1' odata-version: @@ -122,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml index 53d1ceb4ed0..392f8cd03b2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_fairplay_offline.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"37a395e9-c2a5-4cde-a712-0665da5af39d\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"166c74c5-ecac-47cb-b435-a8d1ba1d73f6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:57 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -85,7 +85,7 @@ interactions: --rental-duration --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -93,8 +93,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"9f8f6741-9e58-4cd9-bb10-b35aa431f4b3\",\"created\":\"2021-01-13T01:20:59.58Z\",\"lastModified\":\"2021-01-13T01:20:59.58Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"6dfe7c83-37f0-421d-a8af-53c6c5e01d3b\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"d638c858-1916-4967-9ced-d7dab848a206\",\"created\":\"2021-01-21T00:34:23.783Z\",\"lastModified\":\"2021-01-21T00:34:23.783Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"aebb6330-86b4-4780-ae39-6e16524db494\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyFairPlayConfiguration\",\"ask\":null,\"fairPlayPfxPassword\":null,\"fairPlayPfx\":null,\"rentalAndLeaseKeyType\":\"DualExpiry\",\"rentalDuration\":0,\"offlineRentalConfiguration\":{\r\n \ \"playbackDurationSeconds\":60,\"storageDurationSeconds\":60\r\n \ }\r\n },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n @@ -103,11 +103,11 @@ interactions: cache-control: - no-cache content-length: - - '1074' + - '1076' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:00 GMT + - Thu, 21 Jan 2021 00:34:24 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml index 1cb4bab9d06..eba869ce3c6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_fail.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - West\",\"properties\":{\r\n \"mediaServiceId\":\"006adec5-9691-40e5-a82c-ae7843e70015\",\"storageAccounts\":[\r\n + West\",\"properties\":{\r\n \"mediaServiceId\":\"7b55405a-ea3f-4c5c-a7eb-d38bed17e411\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:14 GMT + - Thu, 21 Jan 2021 00:33:56 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml index 28248f3a042..edea61058d4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_playready_success.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"d8ac2f4a-7d78-4e74-8af3-6a4d484d0596\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"54b780a3-9b0f-444c-b89e-89a6263da9ae\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:39 GMT + - Thu, 21 Jan 2021 00:33:56 GMT expires: - '-1' odata-version: @@ -89,7 +89,7 @@ interactions: - -a -n -g --open-restriction --play-ready-template --description --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -97,8 +97,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"81c51222-5953-4bab-9d0b-4dd789528518\",\"created\":\"2021-01-13T01:20:40.507Z\",\"lastModified\":\"2021-01-13T01:20:40.507Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"cb5975a7-24cf-4092-925d-438fbc7b68eb\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"3005c45c-75a1-47a5-9c1a-126e46814d68\",\"created\":\"2021-01-21T00:33:58.39Z\",\"lastModified\":\"2021-01-21T00:33:58.39Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"892b709c-f9f2-47c1-82af-1711da084a56\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyPlayReadyConfiguration\",\"licenses\":[\r\n \ {\r\n \"allowTestDevices\":true,\"expirationDate\":\"2098-09-15T18:53:00Z\",\"relativeBeginDate\":\"PT1H1M1S\",\"gracePeriod\":\"PT2H2M2S\",\"playRight\":{\r\n \ \"firstPlayExpiration\":\"PT12H\",\"scmsRestriction\":1,\"agcAndColorStripeRestriction\":2,\"explicitAnalogTelevisionOutputRestriction\":{\r\n @@ -112,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '1951' + - '1949' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:39 GMT + - Thu, 21 Jan 2021 00:33:57 GMT expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml index 00d87574d82..2c8720ae1db 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_token.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"edd9bad5-42c4-4caa-911c-5aa68617fba5\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"85641793-f23f-4f5e-8126-0baa37e35251\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:09 GMT + - Thu, 21 Jan 2021 00:34:06 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -89,7 +89,7 @@ interactions: --widevine-template --token-claims --open-id-connect-discovery-document --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -97,8 +97,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"8dfe1647-4b1a-4ca0-982f-225e829060a5\",\"created\":\"2021-01-13T01:21:11.68Z\",\"lastModified\":\"2021-01-13T01:21:11.68Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"cbd18267-c62a-4a39-95aa-56afa6e9e820\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"e3ff8579-ec3f-4960-be27-6fce68b7a670\",\"created\":\"2021-01-21T00:34:08.56Z\",\"lastModified\":\"2021-01-21T00:34:08.56Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"46070fbb-d4ca-48c3-9228-090917878265\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -121,7 +121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:12 GMT + - Thu, 21 Jan 2021 00:34:08 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml index 606297b7ec6..3da666fc4db 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_create_with_widevine.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"3ca3e6da-c1fb-479c-8dee-14f7fb3e684d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"f6f2e266-0575-4aac-b5fc-2373dd42ba77\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:26 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -80,7 +80,7 @@ interactions: - -a -n -g --description --widevine-template --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -88,8 +88,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"2fc6b272-bc01-4862-8b63-e8fa39121a90\",\"created\":\"2021-01-13T01:20:27.557Z\",\"lastModified\":\"2021-01-13T01:20:27.557Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"628a963d-e7da-4124-82b7-ea5031c31c80\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"e7f087f6-529a-4282-a3f2-fa13fea9cf08\",\"created\":\"2021-01-21T00:34:23.543Z\",\"lastModified\":\"2021-01-21T00:34:23.543Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"cabb6495-653e-4464-8048-954071bef9ad\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyWidevineConfiguration\",\"widevineTemplate\":\"{\\r\\n \ \\\"allowed_track_types\\\":\\\"SD_HD\\\",\\r\\n \\\"content_key_specs\\\":[\\r\\n \ {\\r\\n \\\"track_type\\\":\\\"SD\\\",\\r\\n \\\"security_level\\\":1,\\r\\n @@ -106,7 +106,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:27 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -124,7 +124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml index ab34ac82110..a26dfba0e29 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_delete_list.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"2cfa82d2-9a7b-42db-a985-0742a855a6d7\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ea46d382-4487-4225-9cde-a09d97a7cae2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:53 GMT + - Thu, 21 Jan 2021 00:34:20 GMT expires: - '-1' odata-version: @@ -79,7 +79,7 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -87,8 +87,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"0b8cbe4d-1359-43f6-a60a-56019fb4ad4f\",\"created\":\"2021-01-13T01:20:54.353Z\",\"lastModified\":\"2021-01-13T01:20:54.353Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"d48201dc-9c16-435f-a329-997c2835807e\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"bbe18eaf-557e-4f54-916f-5d3bb878538e\",\"created\":\"2021-01-21T00:34:21.65Z\",\"lastModified\":\"2021-01-21T00:34:21.65Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ce4c7474-0edf-4801-b72b-bcac3864d26c\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -96,11 +96,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '847' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:54 GMT + - Thu, 21 Jan 2021 00:34:21 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 200 message: OK @@ -137,7 +137,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -145,8 +145,8 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"0b8cbe4d-1359-43f6-a60a-56019fb4ad4f\",\"created\":\"2021-01-13T01:20:54.353Z\",\"lastModified\":\"2021-01-13T01:20:54.353Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"d48201dc-9c16-435f-a329-997c2835807e\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"bbe18eaf-557e-4f54-916f-5d3bb878538e\",\"created\":\"2021-01-21T00:34:21.65Z\",\"lastModified\":\"2021-01-21T00:34:21.65Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ce4c7474-0edf-4801-b72b-bcac3864d26c\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" @@ -154,11 +154,11 @@ interactions: cache-control: - no-cache content-length: - - '925' + - '923' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:54 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -195,7 +195,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -209,7 +209,7 @@ interactions: content-length: - '0' date: - - Wed, 13 Jan 2021 01:20:55 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' pragma: @@ -240,7 +240,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -256,7 +256,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:20:55 GMT + - Thu, 21 Jan 2021 00:34:23 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml index ea64797ec6c..4da9a5af09e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_basic.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - Central\",\"properties\":{\r\n \"mediaServiceId\":\"abb4e627-ae25-4f5a-bb75-e373d4197d23\",\"storageAccounts\":[\r\n + Central\",\"properties\":{\r\n \"mediaServiceId\":\"352bb9d4-5299-462d-8aa2-e7b0125fc329\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:28 GMT + - Thu, 21 Jan 2021 00:34:48 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -80,7 +80,7 @@ interactions: - -a -n -g --description --clear-key-configuration --open-restriction --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -88,8 +88,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"4326abb5-fbfa-40cc-8e06-ed720922f11f\",\"created\":\"2021-01-13T01:21:29.883Z\",\"lastModified\":\"2021-01-13T01:21:29.883Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4f9f8e6a-4fef-4da7-bffb-c48cb067ce41\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"053dfde8-33c5-4596-987a-16159d4dfa11\",\"created\":\"2021-01-21T00:34:49.383Z\",\"lastModified\":\"2021-01-21T00:34:49.383Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"31f0dca4-6eab-442e-9be7-9363288f1a4e\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -101,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:29 GMT + - Thu, 21 Jan 2021 00:34:49 GMT expires: - '-1' odata-version: @@ -119,7 +119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 200 message: OK @@ -138,7 +138,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -146,8 +146,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"4326abb5-fbfa-40cc-8e06-ed720922f11f\",\"created\":\"2021-01-13T01:21:29.883Z\",\"lastModified\":\"2021-01-13T01:21:29.883Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"4f9f8e6a-4fef-4da7-bffb-c48cb067ce41\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"053dfde8-33c5-4596-987a-16159d4dfa11\",\"created\":\"2021-01-21T00:34:49.383Z\",\"lastModified\":\"2021-01-21T00:34:49.383Z\",\"description\":\"ExampleDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"31f0dca4-6eab-442e-9be7-9363288f1a4e\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyOpenRestriction\"\r\n \ }\r\n }\r\n ]\r\n }\r\n}" @@ -159,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:29 GMT + - Thu, 21 Jan 2021 00:34:49 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml index cc149965baf..10490e668d0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_show_with_secrets.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Canada - East\",\"properties\":{\r\n \"mediaServiceId\":\"6fc30c42-1f3b-4573-9ac6-9c91fbaa26a6\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"03d948fd-7831-4098-ae8f-2e566337eaa8\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:08 GMT + - Thu, 21 Jan 2021 00:34:19 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -84,7 +84,7 @@ interactions: --issuer --audience --token-type User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -92,8 +92,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"ce4f06f3-9d51-42af-ae48-508aa45c2706\",\"created\":\"2021-01-21T00:34:21.227Z\",\"lastModified\":\"2021-01-21T00:34:21.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ccc26fcd-0c2f-4cf5-a91c-95ae761beef9\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n @@ -108,7 +108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:09 GMT + - Thu, 21 Jan 2021 00:34:21 GMT expires: - '-1' odata-version: @@ -126,7 +126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -145,7 +145,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -153,8 +153,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"ce4f06f3-9d51-42af-ae48-508aa45c2706\",\"created\":\"2021-01-21T00:34:21.227Z\",\"lastModified\":\"2021-01-21T00:34:21.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ccc26fcd-0c2f-4cf5-a91c-95ae761beef9\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":null\r\n @@ -169,7 +169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:09 GMT + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -206,15 +206,15 @@ interactions: - -a -n -g --with-secrets User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2020-05-01 response: body: - string: "{\r\n \"policyId\":\"9e456dc1-80d0-4b69-8bd6-814b3aa0d60e\",\"created\":\"2021-01-13T01:21:09.003Z\",\"lastModified\":\"2021-01-13T01:21:09.003Z\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"1bef815d-46ea-474c-85e1-80627f7ccc9d\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"ce4f06f3-9d51-42af-ae48-508aa45c2706\",\"created\":\"2021-01-21T00:34:21.227Z\",\"lastModified\":\"2021-01-21T00:34:21.227Z\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"ccc26fcd-0c2f-4cf5-a91c-95ae761beef9\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"issuer\",\"audience\":\"audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyX509CertificateTokenKey\",\"rawBody\":\"MIICEjCCAXsCAg36MA0GCSqGSIb3DQEBBQUAMIGbMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEDAOBgNVBAcTB0NodW8ta3UxETAPBgNVBAoTCEZyYW5rNEREMRgwFgYDVQQLEw9XZWJDZXJ0IFN1cHBvcnQxGDAWBgNVBAMTD0ZyYW5rNEREIFdlYiBDQTEjMCEGCSqGSIb3DQEJARYUc3VwcG9ydEBmcmFuazRkZC5jb20wHhcNMTIwODIyMDUyNjU0WhcNMTcwODIxMDUyNjU0WjBKMQswCQYDVQQGEwJKUDEOMAwGA1UECAwFVG9reW8xETAPBgNVBAoMCEZyYW5rNEREMRgwFgYDVQQDDA93d3cuZXhhbXBsZS5jb20wXDANBgkqhkiG9w0BAQEFAANLADBIAkEAm/xmkHmEQrurE/0re/jeFRLl8ZPjBop7uLHhnia7lQG/5zDtZIUC3RVpqDSwBuw/NTweGyuP+o8AG98HxqxTBwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBABS2TLuBeTPmcaTaUW/LCB2NYOy8GMdzR1mx8iBIu2H6/E2tiY3RIevV2OW61qY2/XRQg7YPxx3ffeUugX9F4J/iPnnu1zAxxyBy2VguKv4SWjRFoRkIfIlHX0qVviMhSlNy2ioFLy7JcPZb+v3ftDGywUqcBiVDoea0Hn+GmxZA\"\r\n @@ -229,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:10 GMT + - Thu, 21 Jan 2021 00:34:23 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml index a85f7c435a0..e8203fff41e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_content_key_policy_update.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Australia - East\",\"properties\":{\r\n \"mediaServiceId\":\"8977d319-900e-444a-b25f-3fa6396942be\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"2ba10012-ff09-4396-b2a9-281e6957c2c4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:35 GMT + - Thu, 21 Jan 2021 00:34:24 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -88,7 +88,7 @@ interactions: --policy-option-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -96,8 +96,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:37.25Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"58c96078-3d52-4d39-8977-c8a7bf6d109f\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"3f8410c1-b9dd-46f5-8c0d-3ef381bf6256\",\"created\":\"2021-01-21T00:34:25.98Z\",\"lastModified\":\"2021-01-21T00:34:25.98Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"8a2c4a85-2094-45de-8c14-89b943078e25\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n @@ -115,7 +115,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:37 GMT + - Thu, 21 Jan 2021 00:34:26 GMT expires: - '-1' odata-version: @@ -133,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -154,15 +154,15 @@ interactions: - -a -n -g --description --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaServices/ams000003/contentKeyPolicies/pn000004/getPolicyPropertiesWithSecrets?api-version=2020-05-01 response: body: - string: "{\r\n \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:37.25Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"58c96078-3d52-4d39-8977-c8a7bf6d109f\",\"name\":\"pon000005\",\"configuration\":{\r\n + string: "{\r\n \"policyId\":\"3f8410c1-b9dd-46f5-8c0d-3ef381bf6256\",\"created\":\"2021-01-21T00:34:25.98Z\",\"lastModified\":\"2021-01-21T00:34:25.98Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"8a2c4a85-2094-45de-8c14-89b943078e25\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":\"YTFiMmMzZDRlNWY2ZzdoOGk5ajA=\"\r\n @@ -180,7 +180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:39 GMT + - Thu, 21 Jan 2021 00:34:27 GMT expires: - '-1' odata-version: @@ -229,7 +229,7 @@ interactions: - -a -n -g --description --set User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PATCH @@ -237,8 +237,8 @@ interactions: response: body: string: "{\r\n \"name\":\"pn000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/contentKeyPolicies/pn000004\",\"type\":\"Microsoft.Media/mediaservices/contentKeyPolicies\",\"properties\":{\r\n - \ \"policyId\":\"55e2293b-2ad0-4946-89d8-9898e7eb2ac4\",\"created\":\"2021-01-13T01:21:37.25Z\",\"lastModified\":\"2021-01-13T01:21:40.77Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n - \ {\r\n \"policyOptionId\":\"59640774-a93c-49d8-9ff1-74a382a4cd5b\",\"name\":\"pon000005\",\"configuration\":{\r\n + \ \"policyId\":\"3f8410c1-b9dd-46f5-8c0d-3ef381bf6256\",\"created\":\"2021-01-21T00:34:25.98Z\",\"lastModified\":\"2021-01-21T00:34:30.97Z\",\"description\":\"AnotherDescription\",\"options\":[\r\n + \ {\r\n \"policyOptionId\":\"74117d7f-1d34-4e5f-b3f7-9284426f142f\",\"name\":\"pon000005\",\"configuration\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration\"\r\n \ },\"restriction\":{\r\n \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicyTokenRestriction\",\"issuer\":\"AnotherIssuer\",\"audience\":\"Audience\",\"primaryVerificationKey\":{\r\n \ \"@odata.type\":\"#Microsoft.Media.ContentKeyPolicySymmetricTokenKey\",\"keyValue\":null\r\n @@ -256,7 +256,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:40 GMT + - Thu, 21 Jan 2021 00:34:30 GMT expires: - '-1' odata-version: @@ -274,7 +274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml index 8514dee9051..735f63f2f45 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"b93b7340-8c0c-463a-bb9c-51d6caf30b7d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"29351dd9-9855-428e-a624-57d34a09f9c3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:58 GMT + - Thu, 21 Jan 2021 00:37:47 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -70,13 +70,13 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -84,7 +84,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"b93b7340-8c0c-463a-bb9c-51d6caf30b7d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"29351dd9-9855-428e-a624-57d34a09f9c3\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -97,7 +97,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:59 GMT + - Thu, 21 Jan 2021 00:37:48 GMT expires: - '-1' odata-version: @@ -150,13 +150,13 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -164,7 +164,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:01.3722011Z\",\"lastModified\":\"2021-01-13T01:22:01.3722011Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.0040934Z\",\"lastModified\":\"2021-01-21T00:37:51.0040934Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -188,7 +188,7 @@ interactions: \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -196,11 +196,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:01 GMT + - Thu, 21 Jan 2021 00:37:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -228,23 +228,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n + string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -252,7 +252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:04 GMT + - Thu, 21 Jan 2021 00:37:53 GMT expires: - '-1' odata-version: @@ -284,23 +284,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n + string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -308,7 +308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:06 GMT + - Thu, 21 Jan 2021 00:37:55 GMT expires: - '-1' odata-version: @@ -340,23 +340,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1c7e4f7a-b741-4e3b-ad38-8cef5e47100b\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n + string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1c7e4f7a-b741-4e3b-ad38-8cef5e47100b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -364,7 +364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:08 GMT + - Thu, 21 Jan 2021 00:37:58 GMT expires: - '-1' odata-version: @@ -396,19 +396,19 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --live-transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname-prefix --stretch-mode + --use-static-hostname --custom-hostname --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.4034505Z\",\"lastModified\":\"2021-01-13T01:22:07.9925691Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.0196951Z\",\"lastModified\":\"2021-01-21T00:37:57.9938322Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n @@ -443,7 +443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:08 GMT + - Thu, 21 Jan 2021 00:37:58 GMT expires: - '-1' odata-version: @@ -482,7 +482,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -492,17 +492,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:10 GMT + - Thu, 21 Jan 2021 00:37:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 pragma: - no-cache server: @@ -531,17 +531,17 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a906a0fb-027b-4609-9f51-050d81cf58b7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"87edbbe7-481b-4559-8e6e-43476e441aa1\"\r\n + string: "{\r\n \"name\":\"0361bd08-816d-45ee-a5fe-d33972eae9ae\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a906a0fb-027b-4609-9f51-050d81cf58b7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -549,7 +549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:12 GMT + - Thu, 21 Jan 2021 00:38:01 GMT expires: - '-1' odata-version: @@ -584,7 +584,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -592,7 +592,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.4034505Z\",\"lastModified\":\"2021-01-13T01:22:12.2118075Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.0196951Z\",\"lastModified\":\"2021-01-21T00:38:01.1517745Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n @@ -627,7 +627,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:13 GMT + - Thu, 21 Jan 2021 00:38:01 GMT expires: - '-1' odata-version: @@ -664,7 +664,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -674,17 +674,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:15 GMT + - Thu, 21 Jan 2021 00:38:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 pragma: - no-cache server: @@ -694,7 +694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -713,17 +713,17 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"d0c07769-77e2-4787-b80f-51e2957e48b5\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"3452bb5b-7e76-48cb-83f0-8b56aa733b89\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d0c07769-77e2-4787-b80f-51e2957e48b5?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -731,7 +731,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:19 GMT + - Thu, 21 Jan 2021 00:38:05 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml index 6944587953a..9b64f194059 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:14 GMT + - Thu, 21 Jan 2021 00:37:47 GMT expires: - '-1' odata-version: @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:15 GMT + - Thu, 21 Jan 2021 00:37:48 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:18.7196896Z\",\"lastModified\":\"2021-01-13T01:21:18.7196896Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.593Z\",\"lastModified\":\"2021-01-21T00:37:51.593Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1564' + - '1556' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:18 GMT + - Thu, 21 Jan 2021 00:37:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"f2e15d96-0a1b-4cdd-9717-4ec78a5442f0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"6333a53a-65a0-4858-8444-fe1e01bb10f3\"\r\n + string: "{\r\n \"name\":\"c0493d12-e823-4098-898c-1e074934fa2d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f755e7b9-dfe9-4aab-a194-bebaed36e313\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f2e15d96-0a1b-4cdd-9717-4ec78a5442f0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:22 GMT + - Thu, 21 Jan 2021 00:37:54 GMT expires: - '-1' odata-version: @@ -255,18 +255,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -277,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:22 GMT + - Thu, 21 Jan 2021 00:37:54 GMT expires: - '-1' odata-version: @@ -316,7 +316,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -325,12 +325,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -341,11 +341,11 @@ interactions: cache-control: - no-cache content-length: - - '1734' + - '1735' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:24 GMT + - Thu, 21 Jan 2021 00:37:56 GMT expires: - '-1' odata-version: @@ -380,7 +380,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -388,7 +388,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"48b3898b-b88b-476c-a421-ca6d1aa701bd\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +401,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:25 GMT + - Thu, 21 Jan 2021 00:37:57 GMT expires: - '-1' odata-version: @@ -444,7 +444,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -452,12 +452,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:27.5569654Z\",\"lastModified\":\"2021-01-13T01:21:27.5569654Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:00.4243883Z\",\"lastModified\":\"2021-01-21T00:38:00.4243883Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,7 +466,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -474,11 +474,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:27 GMT + - Thu, 21 Jan 2021 00:38:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -490,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -509,17 +509,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"82da79c5-7809-4cbb-8d52-9f4f7b774c65\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7525159b-f9f2-4039-94d9-c62cf78d0534\"\r\n + string: "{\r\n \"name\":\"5f9cc9ff-9268-411c-8df3-c1c747b82275\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b4bd40df-4fd8-4f00-bc71-17473c0d6014\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/82da79c5-7809-4cbb-8d52-9f4f7b774c65?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:30 GMT + - Thu, 21 Jan 2021 00:38:03 GMT expires: - '-1' odata-version: @@ -562,18 +562,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:27.5725535Z\",\"lastModified\":\"2021-01-13T01:21:27.8165692Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.4568668Z\",\"lastModified\":\"2021-01-21T00:38:00.671564Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -584,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '1563' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:31 GMT + - Thu, 21 Jan 2021 00:38:03 GMT expires: - '-1' odata-version: @@ -623,7 +623,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -632,12 +632,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:27.5725535Z\",\"lastModified\":\"2021-01-13T01:21:27.8165692Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7c13d890407e465c9ef7acc2104b6a66\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.4568668Z\",\"lastModified\":\"2021-01-21T00:38:00.671564Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d4520a36-3b3a-4ffe-a792-be62f1107aaf\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -645,12 +645,12 @@ interactions: \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -665,7 +665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:32 GMT + - Thu, 21 Jan 2021 00:38:05 GMT expires: - '-1' odata-version: @@ -702,7 +702,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -712,17 +712,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:21:33 GMT + - Thu, 21 Jan 2021 00:38:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 pragma: - no-cache server: @@ -732,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' status: code: 202 message: Accepted @@ -751,17 +751,17 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"37b41b88-21ef-4e74-8b75-ead041ad3a70\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"2ae4991f-9331-466c-b7f7-5645ce30cb38\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/37b41b88-21ef-4e74-8b75-ead041ad3a70?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -769,7 +769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:36 GMT + - Thu, 21 Jan 2021 00:38:10 GMT expires: - '-1' odata-version: @@ -804,7 +804,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -813,12 +813,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:18.735296Z\",\"lastModified\":\"2021-01-13T01:21:19.0059389Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"93ea3d58831145538de14d61abc17d12\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"4a95ecd3-e748-404f-b272-8c953b4ff9f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -829,11 +829,11 @@ interactions: cache-control: - no-cache content-length: - - '1734' + - '1735' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:38 GMT + - Thu, 21 Jan 2021 00:38:12 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml index 1a5bd654a5a..c254c9a5fd9 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:02 GMT + - Thu, 21 Jan 2021 00:37:47 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:03 GMT + - Thu, 21 Jan 2021 00:37:48 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:06.1930369Z\",\"lastModified\":\"2021-01-13T01:22:06.1930369Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.3190955Z\",\"lastModified\":\"2021-01-21T00:37:51.3190955Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:06 GMT + - Thu, 21 Jan 2021 00:37:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"2a55e40f-c6be-416c-8d02-a91deaa067a4\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"951d667b-f013-4a59-ada6-16429b6cb4fd\"\r\n + string: "{\r\n \"name\":\"5c4c65b7-894e-4d2a-8136-543ec6a53c5e\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f5307ae5-489c-48fa-85c9-45923c5c1efd\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2a55e40f-c6be-416c-8d02-a91deaa067a4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:08 GMT + - Thu, 21 Jan 2021 00:37:54 GMT expires: - '-1' odata-version: @@ -255,18 +255,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:09 GMT + - Thu, 21 Jan 2021 00:37:55 GMT expires: - '-1' odata-version: @@ -316,7 +316,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -325,12 +325,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:11 GMT + - Thu, 21 Jan 2021 00:37:56 GMT expires: - '-1' odata-version: @@ -380,7 +380,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -388,7 +388,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"2baf5e27-3a9c-4c83-9894-4d44d0664362\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +401,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:11 GMT + - Thu, 21 Jan 2021 00:37:57 GMT expires: - '-1' odata-version: @@ -444,7 +444,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -452,12 +452,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.7001624Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:00.3432146Z\",\"lastModified\":\"2021-01-21T00:38:00.3432146Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,7 +466,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -474,11 +474,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:16 GMT + - Thu, 21 Jan 2021 00:38:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -509,17 +509,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"20961b9b-ae8c-4941-819a-174a0b22e480\"\r\n + string: "{\r\n \"name\":\"2e463654-d136-48eb-ac1b-37d27ef048c9\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3802529b-93d8-4705-a2cd-ddfc3a395801\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f1817f9a-2f1d-496c-a2e6-a2d0fa7000c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:19 GMT + - Thu, 21 Jan 2021 00:38:03 GMT expires: - '-1' odata-version: @@ -562,18 +562,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000005?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.9593222Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.3588212Z\",\"lastModified\":\"2021-01-21T00:38:00.6344043Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -588,7 +588,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:19 GMT + - Thu, 21 Jan 2021 00:38:03 GMT expires: - '-1' odata-version: @@ -623,7 +623,7 @@ interactions: - -a -g User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -632,12 +632,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:06.2242848Z\",\"lastModified\":\"2021-01-13T01:22:06.4890199Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"dc20c86c9f36432ea6fb5acff56caf6a\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"43d3f81d-1f53-4954-9495-809740ff94fd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -645,12 +645,12 @@ interactions: \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:15.7001624Z\",\"lastModified\":\"2021-01-13T01:22:15.9593222Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2ce249ae93a740898a773bbec255182c\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.3588212Z\",\"lastModified\":\"2021-01-21T00:38:00.6344043Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8a4937c6-ee08-4b0b-9ae9-f4ceaf38a607\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -665,7 +665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:20 GMT + - Thu, 21 Jan 2021 00:38:05 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml index a79898ea79f..c3d7f228695 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"0331640d-f73d-4c7c-8572-70b4abe34f3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ca696af0-d3c4-464c-afbd-ff7b917e0fce\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:28 GMT + - Thu, 21 Jan 2021 00:37:46 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"0331640d-f73d-4c7c-8572-70b4abe34f3d\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"ca696af0-d3c4-464c-afbd-ff7b917e0fce\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:29 GMT + - Thu, 21 Jan 2021 00:37:47 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:31.1326579Z\",\"lastModified\":\"2021-01-13T01:21:31.1326579Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:49.6012041Z\",\"lastModified\":\"2021-01-21T00:37:49.6012041Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:31 GMT + - Thu, 21 Jan 2021 00:37:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"08644130-1346-4899-8ade-8328fbefd9e7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"32bf6afa-83df-4bd6-b5e3-90e6e2cb5a14\"\r\n + string: "{\r\n \"name\":\"859f160b-cbb3-4a0b-81f8-0523285db5b0\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"64bdf456-cde5-4679-9118-9117dc243b3b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/08644130-1346-4899-8ade-8328fbefd9e7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:33 GMT + - Thu, 21 Jan 2021 00:37:51 GMT expires: - '-1' odata-version: @@ -255,21 +255,21 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:31.1638437Z\",\"lastModified\":\"2021-01-13T01:21:32.497154Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3ced8d8f10bf4ab8b0e56a5594fe78c4.channel.media.azure.net/62121bac16f243c8b26db2cb6e8f461d/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:49.63246Z\",\"lastModified\":\"2021-01-21T00:37:50.876153Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://73e2caadf32f4d2fa836f22b8735f276.channel.media.azure.net/12667773521d4b3f867a17e3a6295baf/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/dc0fe54a-5ef3-4437-84b7-7303267a58f6/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/d124e0b1-7236-42dc-8461-e7e9476c7581/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1898' + - '1896' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:33 GMT + - Thu, 21 Jan 2021 00:37:51 GMT expires: - '-1' odata-version: @@ -319,7 +319,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -329,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:21:35 GMT + - Thu, 21 Jan 2021 00:37:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 pragma: - no-cache server: @@ -368,17 +368,17 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"68454223-4a67-420c-9ef1-28407f3938db\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"32bf6afa-83df-4bd6-b5e3-90e6e2cb5a14\"\r\n + string: "{\r\n \"name\":\"fa19cf3f-754e-418a-baf5-874167cbff1b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"64bdf456-cde5-4679-9118-9117dc243b3b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/68454223-4a67-420c-9ef1-28407f3938db?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -386,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:37 GMT + - Thu, 21 Jan 2021 00:37:56 GMT expires: - '-1' odata-version: @@ -421,7 +421,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -429,15 +429,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:31.1638437Z\",\"lastModified\":\"2021-01-13T01:21:37.3915861Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"62121bac16f243c8b26db2cb6e8f461d\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3ced8d8f10bf4ab8b0e56a5594fe78c4.channel.media.azure.net/62121bac16f243c8b26db2cb6e8f461d/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:49.63246Z\",\"lastModified\":\"2021-01-21T00:37:55.7545866Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://73e2caadf32f4d2fa836f22b8735f276.channel.media.azure.net/12667773521d4b3f867a17e3a6295baf/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"dc0fe54a-5ef3-4437-84b7-7303267a58f6\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/dc0fe54a-5ef3-4437-84b7-7303267a58f6/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/d124e0b1-7236-42dc-8461-e7e9476c7581/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -446,11 +446,11 @@ interactions: cache-control: - no-cache content-length: - - '1899' + - '1897' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:38 GMT + - Thu, 21 Jan 2021 00:37:57 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml index 1eb02d4ecd1..18787eeddd6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"67efd363-11ff-4234-a69e-ccf45dbf0f87\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aaddae87-33af-43bf-a9b6-a836ebe248f1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:00 GMT + - Thu, 21 Jan 2021 00:37:46 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -74,7 +74,7 @@ interactions: --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"67efd363-11ff-4234-a69e-ccf45dbf0f87\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aaddae87-33af-43bf-a9b6-a836ebe248f1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:01 GMT + - Thu, 21 Jan 2021 00:37:46 GMT expires: - '-1' odata-version: @@ -150,7 +150,7 @@ interactions: --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -158,7 +158,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:03.4520934Z\",\"lastModified\":\"2021-01-13T01:22:03.4520934Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:48.5159385Z\",\"lastModified\":\"2021-01-21T00:37:48.5159385Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -181,7 +181,7 @@ interactions: \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -189,11 +189,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:03 GMT + - Thu, 21 Jan 2021 00:37:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -225,17 +225,17 @@ interactions: --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"de769e8e-ccda-4076-9b20-bf4ee3974ba6\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7da024c2-bbe1-4107-ae31-c7d9f8d7a938\"\r\n + string: "{\r\n \"name\":\"4a9b964c-5e54-42e4-95ef-2874551836dd\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"386826b5-3132-4043-b337-b07fbdd22f89\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/de769e8e-ccda-4076-9b20-bf4ee3974ba6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:05 GMT + - Thu, 21 Jan 2021 00:37:50 GMT expires: - '-1' odata-version: @@ -279,13 +279,13 @@ interactions: --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:03.467723Z\",\"lastModified\":\"2021-01-13T01:22:03.6516669Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:48.5472463Z\",\"lastModified\":\"2021-01-21T00:37:48.7446791Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -310,11 +310,11 @@ interactions: cache-control: - no-cache content-length: - - '2657' + - '2658' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:05 GMT + - Thu, 21 Jan 2021 00:37:50 GMT expires: - '-1' odata-version: @@ -349,7 +349,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -357,7 +357,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:03.467723Z\",\"lastModified\":\"2021-01-13T01:22:03.6516669Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:48.5472463Z\",\"lastModified\":\"2021-01-21T00:37:48.7446791Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -382,11 +382,11 @@ interactions: cache-control: - no-cache content-length: - - '2657' + - '2658' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:06 GMT + - Thu, 21 Jan 2021 00:37:52 GMT expires: - '-1' odata-version: @@ -421,7 +421,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -439,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Jan 2021 01:22:07 GMT + - Thu, 21 Jan 2021 00:37:52 GMT expires: - '-1' pragma: @@ -470,7 +470,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -480,17 +480,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:08 GMT + - Thu, 21 Jan 2021 00:37:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 pragma: - no-cache server: @@ -500,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -519,17 +519,17 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"322e7a2f-845e-45d7-b66a-c8be987a0dcc\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"a97f9e05-f986-4bfb-89fe-4289b7b28cb1\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/322e7a2f-845e-45d7-b66a-c8be987a0dcc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -537,7 +537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:09 GMT + - Thu, 21 Jan 2021 00:37:55 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml index 728e9ed5e4b..8b91a85602e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"ea9da941-7ae7-4d0d-8063-f9b654abf5e1\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"8fea07b3-f024-4637-a99b-9e8c8b308ab2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:40 GMT + - Thu, 21 Jan 2021 00:37:49 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"ea9da941-7ae7-4d0d-8063-f9b654abf5e1\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"8fea07b3-f024-4637-a99b-9e8c8b308ab2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:42 GMT + - Thu, 21 Jan 2021 00:37:50 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:21:46.8570945Z\",\"lastModified\":\"2021-01-13T01:21:46.8570945Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:54.728385Z\",\"lastModified\":\"2021-01-21T00:37:54.728385Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1561' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:47 GMT + - Thu, 21 Jan 2021 00:37:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"67748620-8cd2-4e63-b0d4-d297313c2d60\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"477de619-d8ea-4dbf-8614-592830a21d6c\"\r\n + string: "{\r\n \"name\":\"9f92031e-8b09-402d-aaa2-9099d8108eb1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"d6d8cab7-5cb0-4c19-a1c6-df37b3cb44f6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/67748620-8cd2-4e63-b0d4-d297313c2d60?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:23 GMT + - Thu, 21 Jan 2021 00:37:57 GMT expires: - '-1' odata-version: @@ -255,18 +255,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:46.8740729Z\",\"lastModified\":\"2021-01-13T01:21:47.166873Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:54.7440043Z\",\"lastModified\":\"2021-01-21T00:37:55.0591178Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -277,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '1561' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:24 GMT + - Thu, 21 Jan 2021 00:37:58 GMT expires: - '-1' odata-version: @@ -318,7 +318,7 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:26 GMT + - Thu, 21 Jan 2021 00:38:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 pragma: - no-cache server: @@ -367,17 +367,17 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"1e4735d3-9fc2-42db-93de-bc3edec22489\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"477de619-d8ea-4dbf-8614-592830a21d6c\"\r\n + string: "{\r\n \"name\":\"18bd8408-bb27-46c7-aeac-1bc55b550d38\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"d6d8cab7-5cb0-4c19-a1c6-df37b3cb44f6\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/1e4735d3-9fc2-42db-93de-bc3edec22489?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:30 GMT + - Thu, 21 Jan 2021 00:38:04 GMT expires: - '-1' odata-version: @@ -420,7 +420,7 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -428,15 +428,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:21:46.8740729Z\",\"lastModified\":\"2021-01-13T01:22:28.9000566Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"da6b7d4e28524b7cb577d87fa8c0eb0c\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://9be630fc7d3348f69b0aee397b087e94.channel.media.azure.net/da6b7d4e28524b7cb577d87fa8c0eb0c/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:54.7440043Z\",\"lastModified\":\"2021-01-21T00:38:03.3279613Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/34e96aae03ed4c42b97760cdd2173db6/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/1e05c9e7-9f74-4ee4-8bfe-b1aebbb7b7ba/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/1fdb6c12-5437-4baf-90ca-1a859813c151/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:30 GMT + - Thu, 21 Jan 2021 00:38:05 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml index 4992dfcf267..cfcbf583e68 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"b797c4a2-26b2-427f-b35e-e4b2b6bf2e52\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"06385592-e184-405b-8da9-d66e67cd4832\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:57 GMT + - Thu, 21 Jan 2021 00:38:29 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"b797c4a2-26b2-427f-b35e-e4b2b6bf2e52\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"06385592-e184-405b-8da9-d66e67cd4832\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:59 GMT + - Thu, 21 Jan 2021 00:38:31 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:03.1883541Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:34.5099756Z\",\"lastModified\":\"2021-01-21T00:38:34.5099756Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:03 GMT + - Thu, 21 Jan 2021 00:38:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"cf215806-7845-458e-93fc-332a6f51850f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c378a77c-edae-4e80-85c9-d9c6e4c7439c\"\r\n + string: "{\r\n \"name\":\"8ef4deac-e820-433d-8184-639309e0a522\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"4c083cd8-7f31-4316-ae14-dc1f10665866\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf215806-7845-458e-93fc-332a6f51850f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:06 GMT + - Thu, 21 Jan 2021 00:38:37 GMT expires: - '-1' odata-version: @@ -255,18 +255,18 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:03.3950125Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.5255882Z\",\"lastModified\":\"2021-01-21T00:38:34.7845552Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:07 GMT + - Thu, 21 Jan 2021 00:38:38 GMT expires: - '-1' odata-version: @@ -318,7 +318,7 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:23:10 GMT + - Thu, 21 Jan 2021 00:38:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 pragma: - no-cache server: @@ -367,17 +367,17 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"eb21512e-c80b-439f-aed5-76ea14b9850b\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"c378a77c-edae-4e80-85c9-d9c6e4c7439c\"\r\n + string: "{\r\n \"name\":\"716c5d9c-1684-4f9a-952b-59be86f0c65b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"4c083cd8-7f31-4316-ae14-dc1f10665866\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eb21512e-c80b-439f-aed5-76ea14b9850b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:14 GMT + - Thu, 21 Jan 2021 00:38:43 GMT expires: - '-1' odata-version: @@ -420,7 +420,7 @@ interactions: - -a --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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -428,15 +428,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:23:03.1883541Z\",\"lastModified\":\"2021-01-13T01:23:12.8575134Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"46e24a95366f41a297bb77308ae28dff\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://0cea8a03b0194fe3ab8a4786a0fbd673.channel.media.azure.net/46e24a95366f41a297bb77308ae28dff/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.5255882Z\",\"lastModified\":\"2021-01-21T00:38:43.2058661Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/2693949267374276bf53d0635e3ff338/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6102545f-665f-4b71-8d7d-6e88d9aa7659\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/6102545f-665f-4b71-8d7d-6e88d9aa7659/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/cbf8e607-fc6e-4a72-a70e-d4cd49b167df/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:23:14 GMT + - Thu, 21 Jan 2021 00:38:44 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml index 1bdd6d54b42..de11ef34456 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"f72bf0d5-1481-4f46-bbf6-32eca90dac69\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"64688479-838a-45ae-bf76-5c979d80435e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:56 GMT + - Thu, 21 Jan 2021 00:38:39 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"f72bf0d5-1481-4f46-bbf6-32eca90dac69\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"64688479-838a-45ae-bf76-5c979d80435e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:21:58 GMT + - Thu, 21 Jan 2021 00:38:39 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:01.8481542Z\",\"lastModified\":\"2021-01-13T01:22:01.8481542Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:43.570219Z\",\"lastModified\":\"2021-01-21T00:38:43.570219Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1564' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:01 GMT + - Thu, 21 Jan 2021 00:38:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -202,63 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 - response: - body: - string: '{"error":{"code":"InvalidGatewayHost","message":"Host name resolution - failed for ''Microsoft.Media''; cannot fulfill the request."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '130' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Jan 2021 01:22:15 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: 502 - message: Bad Gateway -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams live-event create - Connection: - - keep-alive - ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e3669933-a373-4c97-84d8-a9b4afe53f24\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"6d0f3e70-07df-475a-a32f-983555665362\"\r\n + string: "{\r\n \"name\":\"2f9857d2-69ca-4987-ab64-db7a06c2c448\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e3669933-a373-4c97-84d8-a9b4afe53f24?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -266,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:17 GMT + - Thu, 21 Jan 2021 00:38:46 GMT expires: - '-1' odata-version: @@ -301,21 +255,21 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.879392Z\",\"lastModified\":\"2021-01-13T01:22:04.2222756Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://5e5cd710f1b04e5980d659ac4264dd27.channel.media.azure.net/df87655d00354199a544c9683581711f/ingest.isml\"\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:43.6014666Z\",\"lastModified\":\"2021-01-21T00:38:45.7522272Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://53008c52acab41fcbe5d65c9cbeb993f.channel.media.azure.net/563970e76c444d68ac50abf6002bb8c5/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/008179c5-4f27-4bef-9bfd-6030696d7a6e/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/c10145a3-9075-4c12-bccd-0a7d5aadd8ca/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -324,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1916' + - '1917' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:17 GMT + - Thu, 21 Jan 2021 00:38:47 GMT expires: - '-1' odata-version: @@ -367,7 +321,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -377,17 +331,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:18 GMT + - Thu, 21 Jan 2021 00:38:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 pragma: - no-cache server: @@ -397,7 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -416,17 +370,70 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b70dd066-406b-4747-bd30-0efc0e19e52d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"6d0f3e70-07df-475a-a32f-983555665362\"\r\n + string: "{\r\n \"name\":\"fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b70dd066-406b-4747-bd30-0efc0e19e52d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:38:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -434,7 +441,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:21 GMT + - Thu, 21 Jan 2021 00:38:55 GMT expires: - '-1' odata-version: @@ -469,7 +476,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -477,12 +484,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:01.879392Z\",\"lastModified\":\"2021-01-13T01:22:22.0966892Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"df87655d00354199a544c9683581711f\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:43.6014666Z\",\"lastModified\":\"2021-01-21T00:38:53.6485135Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"008179c5-4f27-4bef-9bfd-6030696d7a6e\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -493,11 +500,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:23 GMT + - Thu, 21 Jan 2021 00:38:55 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml index e4b9d94fb59..c475b9e8a99 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"2da7ebc0-e67e-48af-8aae-70c8ec0d6112\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"903ce303-f141-4b91-b8e3-e46ccd4a563f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:08 GMT + - Thu, 21 Jan 2021 00:38:30 GMT expires: - '-1' odata-version: @@ -73,7 +73,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"2da7ebc0-e67e-48af-8aae-70c8ec0d6112\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"903ce303-f141-4b91-b8e3-e46ccd4a563f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:10 GMT + - Thu, 21 Jan 2021 00:38:31 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:12.8500632Z\",\"lastModified\":\"2021-01-13T01:22:12.8500632Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:34.2593549Z\",\"lastModified\":\"2021-01-21T00:38:34.2593549Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:13 GMT + - Thu, 21 Jan 2021 00:38:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -202,17 +202,17 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"7787ee27-8862-4aab-a1dd-9cda8ac65a74\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n + string: "{\r\n \"name\":\"ab89f84d-4187-40d4-ae50-ae315093fdd2\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/7787ee27-8862-4aab-a1dd-9cda8ac65a74?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:15 GMT + - Thu, 21 Jan 2021 00:38:37 GMT expires: - '-1' odata-version: @@ -255,21 +255,21 @@ interactions: - -a -n -g --streaming-protocol --encoding-type --tags --ips --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:12.8656792Z\",\"lastModified\":\"2021-01-13T01:22:14.2739429Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://164a78da0c2b471e814817bf8b684d49.channel.media.azure.net/5c317b00864847718a7ebcc54dcf0e6a/ingest.isml\"\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.2749206Z\",\"lastModified\":\"2021-01-21T00:38:36.5303009Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://c5640777663a4ca883dc97c6b8c55c24.channel.media.azure.net/0f63e79ad485428ab86bd7fb0193e44f/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/7e1036a5-26e2-484e-9604-fe5ecca8b1ed/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/163de028-73eb-4682-81e0-98ebb15438bd/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:16 GMT + - Thu, 21 Jan 2021 00:38:37 GMT expires: - '-1' odata-version: @@ -321,7 +321,7 @@ interactions: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -329,17 +329,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"3d7616bd-ae86-4e8e-b949-a97f828e4377\",\"created\":\"2021-01-13T01:22:18.587Z\",\"lastModified\":\"2021-01-13T01:22:18.587Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"b82b2d6c-5e01-4249-ab22-2d82a665337b\",\"created\":\"2021-01-21T00:38:39.62Z\",\"lastModified\":\"2021-01-21T00:38:39.62Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:18 GMT + - Thu, 21 Jan 2021 00:38:39 GMT expires: - '-1' odata-version: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 201 message: Created @@ -377,7 +377,7 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -385,11 +385,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:20.5067285Z\",\"lastModified\":\"2021-01-13T01:22:20.5067285Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:41.3675817Z\",\"lastModified\":\"2021-01-21T00:38:41.3675817Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -397,11 +397,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:21 GMT + - Thu, 21 Jan 2021 00:38:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -432,17 +432,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"557c0a3a-6573-46d9-a0cd-4c0bc31a4abe\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n + string: "{\r\n \"name\":\"d0dc5008-f316-4095-9e5e-f1ff117eb947\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/557c0a3a-6573-46d9-a0cd-4c0bc31a4abe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -450,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:24 GMT + - Thu, 21 Jan 2021 00:38:45 GMT expires: - '-1' odata-version: @@ -485,23 +485,23 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo1000006?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:21.178615Z\",\"lastModified\":\"2021-01-13T01:22:21.6393361Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:42.0550826Z\",\"lastModified\":\"2021-01-21T00:38:42.6115734Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '647' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:24 GMT + - Thu, 21 Jan 2021 00:38:45 GMT expires: - '-1' odata-version: @@ -541,7 +541,7 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -549,11 +549,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:26.8997455Z\",\"lastModified\":\"2021-01-13T01:22:26.8997455Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:47.7496005Z\",\"lastModified\":\"2021-01-21T00:38:47.7496005Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -561,11 +561,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:26 GMT + - Thu, 21 Jan 2021 00:38:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -596,17 +596,17 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"dc99c075-77a8-4790-9d61-e89438e5deb1\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n + string: "{\r\n \"name\":\"adb29329-1e50-4fc6-8726-1ce533a446c1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/dc99c075-77a8-4790-9d61-e89438e5deb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -614,7 +614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:30 GMT + - Thu, 21 Jan 2021 00:38:50 GMT expires: - '-1' odata-version: @@ -649,13 +649,13 @@ interactions: - -a -n -g --asset-name --live-event-name --archive-window-length --manifest-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs/lo2000007?api-version=2020-05-01 response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:27.5247546Z\",\"lastModified\":\"2021-01-13T01:22:27.8926486Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:48.4370807Z\",\"lastModified\":\"2021-01-21T00:38:48.7891104Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -665,7 +665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:30 GMT + - Thu, 21 Jan 2021 00:38:51 GMT expires: - '-1' odata-version: @@ -700,27 +700,27 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:21.178615Z\",\"lastModified\":\"2021-01-13T01:22:21.6393361Z\",\"hls\":null\r\n - \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:27.5247546Z\",\"lastModified\":\"2021-01-13T01:22:27.8926486Z\",\"hls\":null\r\n + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:48.4370807Z\",\"lastModified\":\"2021-01-21T00:38:48.7891104Z\",\"hls\":null\r\n + \ }\r\n },{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:42.0550826Z\",\"lastModified\":\"2021-01-21T00:38:42.6115734Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1356' + - '1357' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:31 GMT + - Thu, 21 Jan 2021 00:38:52 GMT expires: - '-1' odata-version: @@ -759,7 +759,7 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST @@ -769,17 +769,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 Jan 2021 01:22:32 GMT + - Thu, 21 Jan 2021 00:38:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 pragma: - no-cache server: @@ -808,17 +808,17 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"9d339a7e-d57d-4418-8e51-b6880ceab1da\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7cbeca7d-4c4e-4dcd-b6df-1d26dbd6dc2b\"\r\n + string: "{\r\n \"name\":\"b6c3fdeb-e8f1-4a17-882b-9476b432cd35\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d339a7e-d57d-4418-8e51-b6880ceab1da?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -826,7 +826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:35 GMT + - Thu, 21 Jan 2021 00:38:56 GMT expires: - '-1' odata-version: @@ -861,7 +861,7 @@ interactions: - -a -n -g --remove-outputs-on-stop User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -869,12 +869,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:12.8656792Z\",\"lastModified\":\"2021-01-13T01:22:35.8166204Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"5c317b00864847718a7ebcc54dcf0e6a\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.2749206Z\",\"lastModified\":\"2021-01-21T00:38:56.4489366Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7e1036a5-26e2-484e-9604-fe5ecca8b1ed\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -889,7 +889,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:37 GMT + - Thu, 21 Jan 2021 00:38:57 GMT expires: - '-1' odata-version: @@ -924,7 +924,7 @@ interactions: - -a -g --live-event-name User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -940,7 +940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:38 GMT + - Thu, 21 Jan 2021 00:38:57 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml index b591b6a3d53..42a42c289d7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml @@ -19,7 +19,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"2b16c8fd-74d2-4720-bb20-b15cb94e9f9a\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"536c0717-f3b4-4d16-b896-375f3941f74f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:44 GMT + - Thu, 21 Jan 2021 00:38:23 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"2b16c8fd-74d2-4720-bb20-b15cb94e9f9a\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"536c0717-f3b4-4d16-b896-375f3941f74f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:47 GMT + - Thu, 21 Jan 2021 00:38:25 GMT expires: - '-1' odata-version: @@ -137,7 +137,7 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-13T01:22:49.6932723Z\",\"lastModified\":\"2021-01-13T01:22:49.6932723Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:27.782277Z\",\"lastModified\":\"2021-01-21T00:38:27.782277Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1530' + - '1528' content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:49 GMT + - Thu, 21 Jan 2021 00:38:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -202,17 +202,17 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"0ef7a731-a2df-4df3-b0dc-604630b60ac8\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0c28b594-2ece-493a-8852-86340c2b7805\"\r\n + string: "{\r\n \"name\":\"a7dc680f-7ce5-4fad-b8a8-0d827edb081f\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"4e29a106-fb61-4199-a87d-92f8c9a84128\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0ef7a731-a2df-4df3-b0dc-604630b60ac8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:52 GMT + - Thu, 21 Jan 2021 00:38:30 GMT expires: - '-1' odata-version: @@ -255,18 +255,18 @@ interactions: - -a -n -g --ips --streaming-protocol User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=false response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:49.7088859Z\",\"lastModified\":\"2021-01-13T01:22:49.9772148Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:27.7979017Z\",\"lastModified\":\"2021-01-21T00:38:28.0288025Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:53 GMT + - Thu, 21 Jan 2021 00:38:31 GMT expires: - '-1' odata-version: @@ -317,7 +317,7 @@ interactions: --cross-domain-policy --tags User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.15.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -325,12 +325,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-13T01:22:49.7088859Z\",\"lastModified\":\"2021-01-13T01:22:49.9772148Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1043c9e6c9034a0595b0e292a5405c76\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:27.7979017Z\",\"lastModified\":\"2021-01-21T00:38:28.0288025Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f24c914a-7491-4369-887b-a50eb7c59b80\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Wed, 13 Jan 2021 01:22:54 GMT + - Thu, 21 Jan 2021 00:38:32 GMT expires: - '-1' odata-version: @@ -370,10 +370,10 @@ interactions: "asd", "input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "1043c9e6c9034a0595b0e292a5405c76", + "keyFrameIntervalDuration": "PT2S", "accessToken": "0da6308f496240f9a2b28bfe7113d53a", "endpoints": []}, "preview": {"endpoints": [], "accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", - "address": "0.0.0.0"}]}}, "previewLocator": "f24c914a-7491-4369-887b-a50eb7c59b80", + "address": "0.0.0.0"}]}}, "previewLocator": "164dc8b4-6a87-49ab-9647-f1375470734c", "streamingPolicyName": "Predefined_ClearStreamingOnly"}, "encoding": {"encodingType": "None"}, "transcriptions": [], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n Date: Wed, 20 Jan 2021 20:54:39 -0800 Subject: [PATCH 20/30] renamed live event parameter name --- .../azure/cli/command_modules/ams/_params.py | 2 +- .../recordings/test_live_event_create.yaml | 88 +++++------ .../recordings/test_live_event_delete.yaml | 130 ++++++++--------- .../recordings/test_live_event_list.yaml | 104 ++++++------- .../recordings/test_live_event_reset.yaml | 78 +++++----- .../recordings/test_live_event_show.yaml | 56 +++---- .../recordings/test_live_event_standby.yaml | 72 ++++----- .../recordings/test_live_event_start.yaml | 66 ++++----- .../recordings/test_live_event_stop.yaml | 125 +++++----------- ...st_live_event_stop_and_remove_outputs.yaml | 138 +++++++++--------- .../recordings/test_live_event_update.yaml | 86 +++++------ 11 files changed, 446 insertions(+), 499 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index af5f70f2581..d7d618584f1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -369,7 +369,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('client_access_policy', arg_group='Cross Site Access Policies', help='Filepath to the clientaccesspolicy.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('cross_domain_policy', arg_group='Cross Site Access Policies', help='Filepath to the crossdomain.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('stream_options', nargs='+', arg_type=get_enum_type(StreamOptionsFlag), help='The options to use for the LiveEvent. This value is specified at creation time and cannot be updated.') - c.argument('transcription_language', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) + c.argument('transcription_lang', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state') c.argument('custom_hostname', help='When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') c.argument('remove_outputs_on_stop', action='store_true', help='Remove live outputs on stop.') diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml index 735f63f2f45..1183f10b2a1 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"29351dd9-9855-428e-a624-57d34a09f9c3\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7a4a9405-aaab-4a7d-8c86-1220486dc103\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:47 GMT + - Thu, 21 Jan 2021 04:52:43 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -84,7 +84,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"29351dd9-9855-428e-a624-57d34a09f9c3\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7a4a9405-aaab-4a7d-8c86-1220486dc103\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -97,7 +97,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:48 GMT + - Thu, 21 Jan 2021 04:52:44 GMT expires: - '-1' odata-version: @@ -164,7 +164,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.0040934Z\",\"lastModified\":\"2021-01-21T00:37:51.0040934Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:47.0202541Z\",\"lastModified\":\"2021-01-21T04:52:47.0202541Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -188,7 +188,7 @@ interactions: \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -196,11 +196,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:50 GMT + - Thu, 21 Jan 2021 04:52:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -236,15 +236,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n + string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -252,7 +252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:53 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' odata-version: @@ -292,15 +292,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n + string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -308,7 +308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:55 GMT + - Thu, 21 Jan 2021 04:52:52 GMT expires: - '-1' odata-version: @@ -348,15 +348,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e81874b3-4147-4310-9355-b8f2b8b2fb92\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n + string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e81874b3-4147-4310-9355-b8f2b8b2fb92?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -364,7 +364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:58 GMT + - Thu, 21 Jan 2021 04:52:54 GMT expires: - '-1' odata-version: @@ -408,7 +408,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.0196951Z\",\"lastModified\":\"2021-01-21T00:37:57.9938322Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.0358347Z\",\"lastModified\":\"2021-01-21T04:52:53.6543889Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n @@ -443,7 +443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:58 GMT + - Thu, 21 Jan 2021 04:52:54 GMT expires: - '-1' odata-version: @@ -492,17 +492,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:37:58 GMT + - Thu, 21 Jan 2021 04:52:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 pragma: - no-cache server: @@ -533,15 +533,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"0361bd08-816d-45ee-a5fe-d33972eae9ae\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"7885ff60-f335-4008-9b59-3100264bdcbd\"\r\n + string: "{\r\n \"name\":\"f52c53eb-6127-46f0-8f8f-d6a869ea9a8d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0361bd08-816d-45ee-a5fe-d33972eae9ae?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -549,7 +549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:01 GMT + - Thu, 21 Jan 2021 04:52:57 GMT expires: - '-1' odata-version: @@ -592,7 +592,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.0196951Z\",\"lastModified\":\"2021-01-21T00:38:01.1517745Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.0358347Z\",\"lastModified\":\"2021-01-21T04:52:56.7842796Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n @@ -627,7 +627,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:01 GMT + - Thu, 21 Jan 2021 04:52:58 GMT expires: - '-1' odata-version: @@ -674,17 +674,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:03 GMT + - Thu, 21 Jan 2021 04:52:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 pragma: - no-cache server: @@ -715,15 +715,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"3452bb5b-7e76-48cb-83f0-8b56aa733b89\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"42c29660-0c41-470c-aac7-a0aab7080faf\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3452bb5b-7e76-48cb-83f0-8b56aa733b89?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -731,7 +731,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:05 GMT + - Thu, 21 Jan 2021 04:53:01 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml index 9b64f194059..b1a7ad6fbd2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:47 GMT + - Thu, 21 Jan 2021 04:52:45 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:48 GMT + - Thu, 21 Jan 2021 04:52:46 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.593Z\",\"lastModified\":\"2021-01-21T00:37:51.593Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:49.2155452Z\",\"lastModified\":\"2021-01-21T04:52:49.2155452Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1556' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:51 GMT + - Thu, 21 Jan 2021 04:52:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c0493d12-e823-4098-898c-1e074934fa2d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f755e7b9-dfe9-4aab-a194-bebaed36e313\"\r\n + string: "{\r\n \"name\":\"9d3b113c-5047-414a-b272-d47f0e4249af\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"8eb78b3a-5861-426b-96b2-33d3b28d9300\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c0493d12-e823-4098-898c-1e074934fa2d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:54 GMT + - Thu, 21 Jan 2021 04:52:52 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:54 GMT + - Thu, 21 Jan 2021 04:52:52 GMT expires: - '-1' odata-version: @@ -325,12 +325,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:56 GMT + - Thu, 21 Jan 2021 04:52:54 GMT expires: - '-1' odata-version: @@ -388,7 +388,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1ad00165-2877-4f4b-84db-2b0a0ad5a4e1\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +401,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:57 GMT + - Thu, 21 Jan 2021 04:52:55 GMT expires: - '-1' odata-version: @@ -452,12 +452,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:00.4243883Z\",\"lastModified\":\"2021-01-21T00:38:00.4243883Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:57.4143694Z\",\"lastModified\":\"2021-01-21T04:52:57.4143694Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,7 +466,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -474,11 +474,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:00 GMT + - Thu, 21 Jan 2021 04:52:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -490,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -511,15 +511,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"5f9cc9ff-9268-411c-8df3-c1c747b82275\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b4bd40df-4fd8-4f00-bc71-17473c0d6014\"\r\n + string: "{\r\n \"name\":\"aaaecadd-0ff1-4e0b-b2cf-53059daa87b0\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"371c0969-b073-4284-8463-913073ebaff0\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5f9cc9ff-9268-411c-8df3-c1c747b82275?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:03 GMT + - Thu, 21 Jan 2021 04:53:00 GMT expires: - '-1' odata-version: @@ -568,12 +568,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.4568668Z\",\"lastModified\":\"2021-01-21T00:38:00.671564Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.4456215Z\",\"lastModified\":\"2021-01-21T04:52:57.7076825Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -584,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:03 GMT + - Thu, 21 Jan 2021 04:53:01 GMT expires: - '-1' odata-version: @@ -632,12 +632,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.4568668Z\",\"lastModified\":\"2021-01-21T00:38:00.671564Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf25ff7bbc1a4d17a630dc871b6d9e9d\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.4456215Z\",\"lastModified\":\"2021-01-21T04:52:57.7076825Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"08fe295e-2c38-4def-b3bd-1542d1b80f6d\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -645,12 +645,12 @@ interactions: \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -661,11 +661,11 @@ interactions: cache-control: - no-cache content-length: - - '3442' + - '3443' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:05 GMT + - Thu, 21 Jan 2021 04:53:02 GMT expires: - '-1' odata-version: @@ -712,17 +712,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:08 GMT + - Thu, 21 Jan 2021 04:53:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 pragma: - no-cache server: @@ -732,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted @@ -753,15 +753,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"2ae4991f-9331-466c-b7f7-5645ce30cb38\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"aebf6f12-699c-42cc-8c4d-18b1961cc175\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2ae4991f-9331-466c-b7f7-5645ce30cb38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -769,7 +769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:10 GMT + - Thu, 21 Jan 2021 04:53:07 GMT expires: - '-1' odata-version: @@ -813,12 +813,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.6086309Z\",\"lastModified\":\"2021-01-21T00:37:51.8204695Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4dfb64ee1d23462bac8f5a7a84489eb5\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"839312b4-f1cf-4a2a-8e2c-6b0e434830cb\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -833,7 +833,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:12 GMT + - Thu, 21 Jan 2021 04:53:09 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml index c254c9a5fd9..d55c1119e41 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:47 GMT + - Thu, 21 Jan 2021 04:52:43 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:48 GMT + - Thu, 21 Jan 2021 04:52:43 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:51.3190955Z\",\"lastModified\":\"2021-01-21T00:37:51.3190955Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:47.5240193Z\",\"lastModified\":\"2021-01-21T04:52:47.5240193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:50 GMT + - Thu, 21 Jan 2021 04:52:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"5c4c65b7-894e-4d2a-8136-543ec6a53c5e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f5307ae5-489c-48fa-85c9-45923c5c1efd\"\r\n + string: "{\r\n \"name\":\"3704762f-4d5f-4226-9b48-86f4cce192be\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"89f5c084-d35c-498d-9745-7a3c006392c4\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5c4c65b7-894e-4d2a-8136-543ec6a53c5e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:54 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:55 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' odata-version: @@ -325,12 +325,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:56 GMT + - Thu, 21 Jan 2021 04:52:53 GMT expires: - '-1' odata-version: @@ -388,7 +388,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"288c1602-f22c-4d8e-8363-9b2f8c7f7f79\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +401,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:57 GMT + - Thu, 21 Jan 2021 04:52:53 GMT expires: - '-1' odata-version: @@ -452,12 +452,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:00.3432146Z\",\"lastModified\":\"2021-01-21T00:38:00.3432146Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.215107Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,19 +466,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1561' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:00 GMT + - Thu, 21 Jan 2021 04:52:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -490,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -511,15 +511,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"2e463654-d136-48eb-ac1b-37d27ef048c9\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3802529b-93d8-4705-a2cd-ddfc3a395801\"\r\n + string: "{\r\n \"name\":\"a78da036-926f-40fd-bb15-14eee519b926\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2a5bbdf4-fed8-4bd1-a9d8-be818a79f27b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2e463654-d136-48eb-ac1b-37d27ef048c9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:03 GMT + - Thu, 21 Jan 2021 04:53:00 GMT expires: - '-1' odata-version: @@ -568,12 +568,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.3588212Z\",\"lastModified\":\"2021-01-21T00:38:00.6344043Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.5165207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -584,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1561' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:03 GMT + - Thu, 21 Jan 2021 04:53:01 GMT expires: - '-1' odata-version: @@ -632,12 +632,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:51.3346981Z\",\"lastModified\":\"2021-01-21T00:37:51.6046907Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bf5dc02d1d3e41f9b227c8bd96fc2c73\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"497afa30-3e54-4f86-aefb-611574106d3c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -645,12 +645,12 @@ interactions: \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:00.3588212Z\",\"lastModified\":\"2021-01-21T00:38:00.6344043Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e0e5f89e00ca4f6686117df043580313\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.5165207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"3cf7fe52-9edf-45a9-971b-62449e1c70d1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -661,11 +661,11 @@ interactions: cache-control: - no-cache content-length: - - '3441' + - '3440' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:05 GMT + - Thu, 21 Jan 2021 04:53:02 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml index c3d7f228695..f69e1ae8b0a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"ca696af0-d3c4-464c-afbd-ff7b917e0fce\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"94a46a60-95da-4fd4-a58a-0630d133adb6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:46 GMT + - Thu, 21 Jan 2021 04:52:42 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"ca696af0-d3c4-464c-afbd-ff7b917e0fce\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"94a46a60-95da-4fd4-a58a-0630d133adb6\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:47 GMT + - Thu, 21 Jan 2021 04:52:44 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:49.6012041Z\",\"lastModified\":\"2021-01-21T00:37:49.6012041Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:46.0283237Z\",\"lastModified\":\"2021-01-21T04:52:46.0283237Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:49 GMT + - Thu, 21 Jan 2021 04:52:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"859f160b-cbb3-4a0b-81f8-0523285db5b0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"64bdf456-cde5-4679-9118-9117dc243b3b\"\r\n + string: "{\r\n \"name\":\"bce3d6f7-dd55-465b-a997-c873c1f248cc\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ab62b226-57a3-4928-aab3-4a88d0ecc567\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/859f160b-cbb3-4a0b-81f8-0523285db5b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:51 GMT + - Thu, 21 Jan 2021 04:52:48 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:49.63246Z\",\"lastModified\":\"2021-01-21T00:37:50.876153Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://73e2caadf32f4d2fa836f22b8735f276.channel.media.azure.net/12667773521d4b3f867a17e3a6295baf/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:46.0596069Z\",\"lastModified\":\"2021-01-21T04:52:47.4154924Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3e9f55fe19b54f239cc634cc02d94e43.channel.media.azure.net/82e2dadc26284a9ab953ae5e1f52ca9f/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/d124e0b1-7236-42dc-8461-e7e9476c7581/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/20547a55-f9bc-46f0-8cf5-dadcc65391ea/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1896' + - '1899' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:51 GMT + - Thu, 21 Jan 2021 04:52:48 GMT expires: - '-1' odata-version: @@ -329,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:37:53 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 pragma: - no-cache server: @@ -370,15 +370,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fa19cf3f-754e-418a-baf5-874167cbff1b\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"64bdf456-cde5-4679-9118-9117dc243b3b\"\r\n + string: "{\r\n \"name\":\"cf1fb849-1d52-48b0-8d6c-cca588f7a469\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"ab62b226-57a3-4928-aab3-4a88d0ecc567\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa19cf3f-754e-418a-baf5-874167cbff1b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -386,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:56 GMT + - Thu, 21 Jan 2021 04:52:52 GMT expires: - '-1' odata-version: @@ -429,15 +429,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:49.63246Z\",\"lastModified\":\"2021-01-21T00:37:55.7545866Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"12667773521d4b3f867a17e3a6295baf\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://73e2caadf32f4d2fa836f22b8735f276.channel.media.azure.net/12667773521d4b3f867a17e3a6295baf/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:46.0596069Z\",\"lastModified\":\"2021-01-21T04:52:52.3258709Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3e9f55fe19b54f239cc634cc02d94e43.channel.media.azure.net/82e2dadc26284a9ab953ae5e1f52ca9f/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"d124e0b1-7236-42dc-8461-e7e9476c7581\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/d124e0b1-7236-42dc-8461-e7e9476c7581/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/20547a55-f9bc-46f0-8cf5-dadcc65391ea/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -446,11 +446,11 @@ interactions: cache-control: - no-cache content-length: - - '1897' + - '1899' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:57 GMT + - Thu, 21 Jan 2021 04:52:53 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml index 18787eeddd6..b90260eb051 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"aaddae87-33af-43bf-a9b6-a836ebe248f1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"a9598655-9219-4544-90cc-33ed515307d8\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:46 GMT + - Thu, 21 Jan 2021 04:52:42 GMT expires: - '-1' odata-version: @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"aaddae87-33af-43bf-a9b6-a836ebe248f1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"a9598655-9219-4544-90cc-33ed515307d8\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:46 GMT + - Thu, 21 Jan 2021 04:52:43 GMT expires: - '-1' odata-version: @@ -158,7 +158,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:48.5159385Z\",\"lastModified\":\"2021-01-21T00:37:48.5159385Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:45.5302789Z\",\"lastModified\":\"2021-01-21T04:52:45.5302789Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -181,7 +181,7 @@ interactions: \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -189,11 +189,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:48 GMT + - Thu, 21 Jan 2021 04:52:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -227,15 +227,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"4a9b964c-5e54-42e4-95ef-2874551836dd\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"386826b5-3132-4043-b337-b07fbdd22f89\"\r\n + string: "{\r\n \"name\":\"367c725f-bfd9-40a8-bdfd-ae6f442274b0\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0cb14e3b-c2fd-4162-8ccc-e270023e1dbb\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/4a9b964c-5e54-42e4-95ef-2874551836dd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:50 GMT + - Thu, 21 Jan 2021 04:52:47 GMT expires: - '-1' odata-version: @@ -285,7 +285,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:48.5472463Z\",\"lastModified\":\"2021-01-21T00:37:48.7446791Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:45.5459118Z\",\"lastModified\":\"2021-01-21T04:52:45.822268Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -310,11 +310,11 @@ interactions: cache-control: - no-cache content-length: - - '2658' + - '2657' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:50 GMT + - Thu, 21 Jan 2021 04:52:47 GMT expires: - '-1' odata-version: @@ -357,7 +357,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:48.5472463Z\",\"lastModified\":\"2021-01-21T00:37:48.7446791Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:45.5459118Z\",\"lastModified\":\"2021-01-21T04:52:45.822268Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -382,11 +382,11 @@ interactions: cache-control: - no-cache content-length: - - '2658' + - '2657' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:52 GMT + - Thu, 21 Jan 2021 04:52:49 GMT expires: - '-1' odata-version: @@ -439,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:37:52 GMT + - Thu, 21 Jan 2021 04:52:49 GMT expires: - '-1' pragma: @@ -480,17 +480,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:37:52 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 pragma: - no-cache server: @@ -521,15 +521,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a97f9e05-f986-4bfb-89fe-4289b7b28cb1\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"aa94ba90-48ac-45f9-9b90-adc61fdfcc5f\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a97f9e05-f986-4bfb-89fe-4289b7b28cb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -537,7 +537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:55 GMT + - Thu, 21 Jan 2021 04:52:52 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml index 8b91a85602e..86c5d044db4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"8fea07b3-f024-4637-a99b-9e8c8b308ab2\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"c379863b-85d8-45f6-a21d-c34f06bbdd40\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:49 GMT + - Thu, 21 Jan 2021 04:52:43 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"8fea07b3-f024-4637-a99b-9e8c8b308ab2\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"c379863b-85d8-45f6-a21d-c34f06bbdd40\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:50 GMT + - Thu, 21 Jan 2021 04:52:44 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:37:54.728385Z\",\"lastModified\":\"2021-01-21T00:37:54.728385Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:49.6352655Z\",\"lastModified\":\"2021-01-21T04:52:49.6352655Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1561' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:54 GMT + - Thu, 21 Jan 2021 04:52:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"9f92031e-8b09-402d-aaa2-9099d8108eb1\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"d6d8cab7-5cb0-4c19-a1c6-df37b3cb44f6\"\r\n + string: "{\r\n \"name\":\"0a6418e4-ae65-4bdb-92cf-a04ae72d14fd\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"02b2487e-e5b1-4725-837d-726a2dfc22b3\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9f92031e-8b09-402d-aaa2-9099d8108eb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:57 GMT + - Thu, 21 Jan 2021 04:52:53 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:54.7440043Z\",\"lastModified\":\"2021-01-21T00:37:55.0591178Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.6508609Z\",\"lastModified\":\"2021-01-21T04:52:49.9589613Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:37:58 GMT + - Thu, 21 Jan 2021 04:52:54 GMT expires: - '-1' odata-version: @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:01 GMT + - Thu, 21 Jan 2021 04:52:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 pragma: - no-cache server: @@ -369,15 +369,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"18bd8408-bb27-46c7-aeac-1bc55b550d38\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"d6d8cab7-5cb0-4c19-a1c6-df37b3cb44f6\"\r\n + string: "{\r\n \"name\":\"73e26cea-5f39-4a77-a2a9-25fa231056fe\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"02b2487e-e5b1-4725-837d-726a2dfc22b3\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/18bd8408-bb27-46c7-aeac-1bc55b550d38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:04 GMT + - Thu, 21 Jan 2021 04:52:59 GMT expires: - '-1' odata-version: @@ -428,15 +428,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:37:54.7440043Z\",\"lastModified\":\"2021-01-21T00:38:03.3279613Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"34e96aae03ed4c42b97760cdd2173db6\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/34e96aae03ed4c42b97760cdd2173db6/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.6508609Z\",\"lastModified\":\"2021-01-21T04:52:58.7816201Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/d2e44429b0af4112a633a910d7a6a47a/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"1fdb6c12-5437-4baf-90ca-1a859813c151\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/1fdb6c12-5437-4baf-90ca-1a859813c151/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/f8cae52e-0e85-49ab-9659-d9ec0cb305bc/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:05 GMT + - Thu, 21 Jan 2021 04:53:00 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml index cfcbf583e68..d7b27cefbd7 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"06385592-e184-405b-8da9-d66e67cd4832\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"1d9fb861-ea4b-4d43-abbe-b4785cc0f0a5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:29 GMT + - Thu, 21 Jan 2021 04:53:26 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"06385592-e184-405b-8da9-d66e67cd4832\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"1d9fb861-ea4b-4d43-abbe-b4785cc0f0a5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:31 GMT + - Thu, 21 Jan 2021 04:53:27 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:34.5099756Z\",\"lastModified\":\"2021-01-21T00:38:34.5099756Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:31.5536207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:34 GMT + - Thu, 21 Jan 2021 04:53:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8ef4deac-e820-433d-8184-639309e0a522\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"4c083cd8-7f31-4316-ae14-dc1f10665866\"\r\n + string: "{\r\n \"name\":\"362148bb-c184-41cf-a69c-4c09fbeec758\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"a7075318-d59d-43ce-98cb-dca6f7078b54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8ef4deac-e820-433d-8184-639309e0a522?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:37 GMT + - Thu, 21 Jan 2021 04:53:35 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.5255882Z\",\"lastModified\":\"2021-01-21T00:38:34.7845552Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:31.8219856Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:38 GMT + - Thu, 21 Jan 2021 04:53:35 GMT expires: - '-1' odata-version: @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:40 GMT + - Thu, 21 Jan 2021 04:53:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 pragma: - no-cache server: @@ -369,15 +369,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"716c5d9c-1684-4f9a-952b-59be86f0c65b\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"4c083cd8-7f31-4316-ae14-dc1f10665866\"\r\n + string: "{\r\n \"name\":\"bfd0ab91-ba7b-42bf-80f9-218bddda2eba\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"a7075318-d59d-43ce-98cb-dca6f7078b54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/716c5d9c-1684-4f9a-952b-59be86f0c65b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:43 GMT + - Thu, 21 Jan 2021 04:53:40 GMT expires: - '-1' odata-version: @@ -428,15 +428,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.5255882Z\",\"lastModified\":\"2021-01-21T00:38:43.2058661Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2693949267374276bf53d0635e3ff338\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/2693949267374276bf53d0635e3ff338/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:40.2025431Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://1737dafe814d4bb1b40a8ad30d3a8603.channel.media.azure.net/bec4ad36300541098868aedeec4c092e/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"cbf8e607-fc6e-4a72-a70e-d4cd49b167df\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/cbf8e607-fc6e-4a72-a70e-d4cd49b167df/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/32ce9647-2d5b-4377-95c9-a1a5d397613c/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:44 GMT + - Thu, 21 Jan 2021 04:53:41 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml index de11ef34456..515e893c1ba 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"64688479-838a-45ae-bf76-5c979d80435e\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"9986b531-a040-4413-8f0e-80b4a5c0e886\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:39 GMT + - Thu, 21 Jan 2021 04:53:34 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"64688479-838a-45ae-bf76-5c979d80435e\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"9986b531-a040-4413-8f0e-80b4a5c0e886\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:39 GMT + - Thu, 21 Jan 2021 04:53:35 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:43.570219Z\",\"lastModified\":\"2021-01-21T00:38:43.570219Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:39.3404929Z\",\"lastModified\":\"2021-01-21T04:53:39.3404929Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1562' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:43 GMT + - Thu, 21 Jan 2021 04:53:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"2f9857d2-69ca-4987-ab64-db7a06c2c448\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n + string: "{\r\n \"name\":\"074cd3b3-dd1a-495d-8e6c-7a75c37e69c7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0caa344b-c433-43ad-8724-fb4b816a754a\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/2f9857d2-69ca-4987-ab64-db7a06c2c448?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:46 GMT + - Thu, 21 Jan 2021 04:53:42 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:43.6014666Z\",\"lastModified\":\"2021-01-21T00:38:45.7522272Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://53008c52acab41fcbe5d65c9cbeb993f.channel.media.azure.net/563970e76c444d68ac50abf6002bb8c5/ingest.isml\"\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:39.3561171Z\",\"lastModified\":\"2021-01-21T04:53:41.6210223Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://7b4c2c5e7c1240dab0b41ed5fab07824.channel.media.azure.net/acc1080666154553a9efebb2a7a23548/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/c10145a3-9075-4c12-bccd-0a7d5aadd8ca/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/bce71489-574f-45ca-abce-b4046bd06669/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:47 GMT + - Thu, 21 Jan 2021 04:53:43 GMT expires: - '-1' odata-version: @@ -331,17 +331,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:49 GMT + - Thu, 21 Jan 2021 04:53:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 pragma: - no-cache server: @@ -372,68 +372,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Thu, 21 Jan 2021 00:38:52 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"cbddc887-6128-42ab-b4b3-363718a177b9\"\r\n + string: "{\r\n \"name\":\"12d75963-f0ac-48d8-a7d0-3612dc1c3c98\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0caa344b-c433-43ad-8724-fb4b816a754a\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fc7b0a57-6ccf-4837-a49e-b2c23b3e2a81?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -441,7 +388,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:55 GMT + - Thu, 21 Jan 2021 04:53:51 GMT expires: - '-1' odata-version: @@ -484,12 +431,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:43.6014666Z\",\"lastModified\":\"2021-01-21T00:38:53.6485135Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"563970e76c444d68ac50abf6002bb8c5\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:39.3561171Z\",\"lastModified\":\"2021-01-21T04:53:48.4034285Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"c10145a3-9075-4c12-bccd-0a7d5aadd8ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -504,7 +451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:55 GMT + - Thu, 21 Jan 2021 04:53:52 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml index c475b9e8a99..b5a4b2c7cb6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"903ce303-f141-4b91-b8e3-e46ccd4a563f\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"de690c17-3d5f-416a-a9b2-d4e911c0d4a5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:30 GMT + - Thu, 21 Jan 2021 04:53:28 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"903ce303-f141-4b91-b8e3-e46ccd4a563f\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"de690c17-3d5f-416a-a9b2-d4e911c0d4a5\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:31 GMT + - Thu, 21 Jan 2021 04:53:30 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:34.2593549Z\",\"lastModified\":\"2021-01-21T00:38:34.2593549Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:32.6108109Z\",\"lastModified\":\"2021-01-21T04:53:32.6108109Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:34 GMT + - Thu, 21 Jan 2021 04:53:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ab89f84d-4187-40d4-ae50-ae315093fdd2\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n + string: "{\r\n \"name\":\"aa784ca3-e472-4c4e-b019-221d55049299\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ab89f84d-4187-40d4-ae50-ae315093fdd2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:37 GMT + - Thu, 21 Jan 2021 04:53:36 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.2749206Z\",\"lastModified\":\"2021-01-21T00:38:36.5303009Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://c5640777663a4ca883dc97c6b8c55c24.channel.media.azure.net/0f63e79ad485428ab86bd7fb0193e44f/ingest.isml\"\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:32.6420384Z\",\"lastModified\":\"2021-01-21T04:53:35.1304418Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://373d4c43907d4d9bb11e5c002cfde926.channel.media.azure.net/c086cfbe61a745c1a6cab01a38096ea9/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/163de028-73eb-4682-81e0-98ebb15438bd/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/be0c63a9-7510-4889-93ea-d814372b6d57/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:37 GMT + - Thu, 21 Jan 2021 04:53:36 GMT expires: - '-1' odata-version: @@ -329,17 +329,17 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"b82b2d6c-5e01-4249-ab22-2d82a665337b\",\"created\":\"2021-01-21T00:38:39.62Z\",\"lastModified\":\"2021-01-21T00:38:39.62Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"190cfca0-988a-44ea-95a8-fe795bd16f66\",\"created\":\"2021-01-21T04:53:38.197Z\",\"lastModified\":\"2021-01-21T04:53:38.197Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '532' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:39 GMT + - Thu, 21 Jan 2021 04:53:38 GMT expires: - '-1' odata-version: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 201 message: Created @@ -385,11 +385,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:41.3675817Z\",\"lastModified\":\"2021-01-21T00:38:41.3675817Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:39.4999564Z\",\"lastModified\":\"2021-01-21T04:53:39.4999564Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -397,11 +397,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:42 GMT + - Thu, 21 Jan 2021 04:53:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -434,15 +434,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"d0dc5008-f316-4095-9e5e-f1ff117eb947\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n + string: "{\r\n \"name\":\"80725409-5a7f-4aaf-ab95-b6247643a2c3\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d0dc5008-f316-4095-9e5e-f1ff117eb947?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -450,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:45 GMT + - Thu, 21 Jan 2021 04:53:42 GMT expires: - '-1' odata-version: @@ -491,7 +491,7 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:42.0550826Z\",\"lastModified\":\"2021-01-21T00:38:42.6115734Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:40.1406051Z\",\"lastModified\":\"2021-01-21T04:53:40.7430942Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -501,7 +501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:45 GMT + - Thu, 21 Jan 2021 04:53:42 GMT expires: - '-1' odata-version: @@ -549,11 +549,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:47.7496005Z\",\"lastModified\":\"2021-01-21T00:38:47.7496005Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:45.6502103Z\",\"lastModified\":\"2021-01-21T04:53:45.6502103Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -561,11 +561,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:48 GMT + - Thu, 21 Jan 2021 04:53:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -598,15 +598,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"adb29329-1e50-4fc6-8726-1ce533a446c1\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n + string: "{\r\n \"name\":\"70c9d63b-af26-46ac-8214-7a6ff691ae47\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/adb29329-1e50-4fc6-8726-1ce533a446c1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -614,7 +614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:50 GMT + - Thu, 21 Jan 2021 04:53:50 GMT expires: - '-1' odata-version: @@ -655,7 +655,7 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:48.4370807Z\",\"lastModified\":\"2021-01-21T00:38:48.7891104Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:46.3377643Z\",\"lastModified\":\"2021-01-21T04:53:46.7756531Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -665,7 +665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:51 GMT + - Thu, 21 Jan 2021 04:53:51 GMT expires: - '-1' odata-version: @@ -707,10 +707,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/liveOutputs?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:48.4370807Z\",\"lastModified\":\"2021-01-21T00:38:48.7891104Z\",\"hls\":null\r\n - \ }\r\n },{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:42.0550826Z\",\"lastModified\":\"2021-01-21T00:38:42.6115734Z\",\"hls\":null\r\n + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:40.1406051Z\",\"lastModified\":\"2021-01-21T04:53:40.7430942Z\",\"hls\":null\r\n + \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:46.3377643Z\",\"lastModified\":\"2021-01-21T04:53:46.7756531Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -720,7 +720,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:52 GMT + - Thu, 21 Jan 2021 04:53:53 GMT expires: - '-1' odata-version: @@ -769,17 +769,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 00:38:53 GMT + - Thu, 21 Jan 2021 04:53:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 pragma: - no-cache server: @@ -810,15 +810,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b6c3fdeb-e8f1-4a17-882b-9476b432cd35\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"732b257b-4c9e-4f05-af49-8b8d6111920f\"\r\n + string: "{\r\n \"name\":\"b74c4af8-1c7b-49be-b2d7-2e74aa3705b1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b6c3fdeb-e8f1-4a17-882b-9476b432cd35?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -826,7 +826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:56 GMT + - Thu, 21 Jan 2021 04:53:57 GMT expires: - '-1' odata-version: @@ -869,12 +869,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:34.2749206Z\",\"lastModified\":\"2021-01-21T00:38:56.4489366Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0f63e79ad485428ab86bd7fb0193e44f\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:32.6420384Z\",\"lastModified\":\"2021-01-21T04:53:56.8366682Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"163de028-73eb-4682-81e0-98ebb15438bd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -889,7 +889,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:57 GMT + - Thu, 21 Jan 2021 04:53:58 GMT expires: - '-1' odata-version: @@ -940,7 +940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:57 GMT + - Thu, 21 Jan 2021 04:53:59 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml index 42a42c289d7..b10094e1feb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"536c0717-f3b4-4d16-b896-375f3941f74f\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"7089e441-a1b5-468f-934b-e74528fdbed1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:23 GMT + - Thu, 21 Jan 2021 04:53:18 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"536c0717-f3b4-4d16-b896-375f3941f74f\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"7089e441-a1b5-468f-934b-e74528fdbed1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:25 GMT + - Thu, 21 Jan 2021 04:53:19 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T00:38:27.782277Z\",\"lastModified\":\"2021-01-21T00:38:27.782277Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:22.8638997Z\",\"lastModified\":\"2021-01-21T04:53:22.8638997Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -159,19 +159,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1528' + - '1530' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:27 GMT + - Thu, 21 Jan 2021 04:53:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a7dc680f-7ce5-4fad-b8a8-0d827edb081f\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"4e29a106-fb61-4199-a87d-92f8c9a84128\"\r\n + string: "{\r\n \"name\":\"bfed071c-5321-4660-9c0b-f2925658a734\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6cc51c5-6960-4684-bd8d-8cd762d727f0\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7dc680f-7ce5-4fad-b8a8-0d827edb081f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:30 GMT + - Thu, 21 Jan 2021 04:53:25 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:27.7979017Z\",\"lastModified\":\"2021-01-21T00:38:28.0288025Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:22.8795108Z\",\"lastModified\":\"2021-01-21T04:53:23.1408139Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:31 GMT + - Thu, 21 Jan 2021 04:53:25 GMT expires: - '-1' odata-version: @@ -325,12 +325,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:38:27.7979017Z\",\"lastModified\":\"2021-01-21T00:38:28.0288025Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0da6308f496240f9a2b28bfe7113d53a\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:22.8795108Z\",\"lastModified\":\"2021-01-21T04:53:23.1408139Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"164dc8b4-6a87-49ab-9647-f1375470734c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:38:32 GMT + - Thu, 21 Jan 2021 04:53:28 GMT expires: - '-1' odata-version: @@ -370,10 +370,10 @@ interactions: "asd", "input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "0da6308f496240f9a2b28bfe7113d53a", + "keyFrameIntervalDuration": "PT2S", "accessToken": "8011d305bd08400a8d0ec1c420d0ebda", "endpoints": []}, "preview": {"endpoints": [], "accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", - "address": "0.0.0.0"}]}}, "previewLocator": "164dc8b4-6a87-49ab-9647-f1375470734c", + "address": "0.0.0.0"}]}}, "previewLocator": "623b3246-aa1e-45a7-a15a-c13e516883c9", "streamingPolicyName": "Predefined_ClearStreamingOnly"}, "encoding": {"encodingType": "None"}, "transcriptions": [], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n Date: Thu, 21 Jan 2021 18:48:22 -0800 Subject: [PATCH 21/30] updating live tests --- .../ams/operations/live_event.py | 6 +- .../recordings/test_live_event_create.yaml | 1095 +++++++++++++++-- .../recordings/test_live_event_delete.yaml | 232 +++- .../recordings/test_live_event_list.yaml | 155 ++- .../recordings/test_live_event_reset.yaml | 74 +- .../recordings/test_live_event_show.yaml | 58 +- .../recordings/test_live_event_standby.yaml | 85 +- .../recordings/test_live_event_start.yaml | 70 +- .../recordings/test_live_event_stop.yaml | 68 +- ...st_live_event_stop_and_remove_outputs.yaml | 187 ++- .../recordings/test_live_event_update.yaml | 84 +- .../latest/test_ams_live_event_scenarios.py | 8 +- 12 files changed, 1619 insertions(+), 503 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py index 87db8e24eb4..855938a8d52 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py @@ -17,7 +17,7 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre tags=None, description=None, key_frame_interval_duration=None, access_token=None, no_wait=False, preview_ips=None, preview_locator=None, streaming_policy_name=None, alternative_media_id=None, client_access_policy=None, cross_domain_policy=None, stream_options=None, - transcription_language=None, use_static_hostname=False, custom_hostname=None): + transcription_lang=None, use_static_hostname=False, custom_hostname=None): from azure.cli.command_modules.ams._client_factory import (get_mediaservices_client) @@ -30,8 +30,8 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre live_event_input_access_control = LiveEventInputAccessControl(ip=IPAccessControl(allow=allowed_ips)) transcriptions = [] - if transcription_language: - transcriptions = [{'language': transcription_language}] + if transcription_lang: + transcriptions = [{'language': transcription_lang}] live_event_input = LiveEventInput(streaming_protocol=LiveEventInputProtocol(streaming_protocol), access_token=access_token, diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml index 1183f10b2a1..d0aea1f5f80 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7a4a9405-aaab-4a7d-8c86-1220486dc103\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"dc8d20b7-9b52-4a70-abd1-8c5d8d768a8c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:43 GMT + - Fri, 22 Jan 2021 02:46:18 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -70,7 +70,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -84,7 +84,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7a4a9405-aaab-4a7d-8c86-1220486dc103\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"dc8d20b7-9b52-4a70-abd1-8c5d8d768a8c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -97,7 +97,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:44 GMT + - Fri, 22 Jan 2021 02:46:18 GMT expires: - '-1' odata-version: @@ -150,7 +150,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -164,7 +164,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:47.0202541Z\",\"lastModified\":\"2021-01-21T04:52:47.0202541Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:20.8226933Z\",\"lastModified\":\"2021-01-22T02:46:20.8226933Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -188,7 +188,7 @@ interactions: \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -196,11 +196,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:47 GMT + - Fri, 22 Jan 2021 02:46:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -228,7 +228,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -236,15 +236,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n + string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -252,7 +252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:23 GMT expires: - '-1' odata-version: @@ -284,7 +284,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -292,15 +292,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n + string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -308,7 +308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:52 GMT + - Fri, 22 Jan 2021 02:46:25 GMT expires: - '-1' odata-version: @@ -340,7 +340,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -348,15 +348,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"35c73f74-6bcf-4ea4-b5d2-128125987a64\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n + string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/35c73f74-6bcf-4ea4-b5d2-128125987a64?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -364,7 +364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:54 GMT + - Fri, 22 Jan 2021 02:46:27 GMT expires: - '-1' odata-version: @@ -396,7 +396,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --auto-start --transcription-language --streaming-protocol --encoding-type + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy --use-static-hostname --custom-hostname --stretch-mode @@ -408,7 +408,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.0358347Z\",\"lastModified\":\"2021-01-21T04:52:53.6543889Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:20.8383063Z\",\"lastModified\":\"2021-01-22T02:46:27.125862Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n @@ -439,11 +439,11 @@ interactions: cache-control: - no-cache content-length: - - '3601' + - '3600' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:54 GMT + - Fri, 22 Jan 2021 02:46:27 GMT expires: - '-1' odata-version: @@ -492,17 +492,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:52:54 GMT + - Fri, 22 Jan 2021 02:46:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 pragma: - no-cache server: @@ -533,23 +533,23 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"f52c53eb-6127-46f0-8f8f-d6a869ea9a8d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"605ea3dd-be40-4115-8ed4-aa0efe0e51db\"\r\n + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f52c53eb-6127-46f0-8f8f-d6a869ea9a8d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '171' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:57 GMT + - Fri, 22 Jan 2021 02:46:31 GMT expires: - '-1' odata-version: @@ -585,49 +585,24 @@ interactions: User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.0358347Z\",\"lastModified\":\"2021-01-21T04:52:56.7842796Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n - \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n - \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n - \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n - \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n - \ \\r\\n \\r\\n - \ \\r\\n - \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n - \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n - \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '3601' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:58 GMT + - Fri, 22 Jan 2021 02:46:33 GMT expires: - '-1' odata-version: @@ -655,49 +630,975 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event delete + - ams live-event stop Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 response: body: - string: '' + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '0' + - '172' + content-type: + - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:59 GMT + - Fri, 22 Jan 2021 02:46:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 + odata-version: + - '4.0' 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-deletes: - - '14998' status: - code: 202 - message: Accepted + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:37 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:39 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:41 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:43 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:45 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:48 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:50 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:54 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:56 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:58 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:47:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:47:02 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:47:04 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:20.8383063Z\",\"lastModified\":\"2021-01-22T02:47:04.2874891Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n + \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n + \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n + \ \\r\\n \\r\\n + \ \\r\\n + \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3601' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:47:06 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 22 Jan 2021 02:47:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + 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-deletes: + - '14997' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event delete + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"e56125d7-465c-4381-9708-777cca55ee25\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:47:08 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: @@ -715,15 +1616,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"42c29660-0c41-470c-aac7-a0aab7080faf\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"e56125d7-465c-4381-9708-777cca55ee25\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/42c29660-0c41-470c-aac7-a0aab7080faf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -731,7 +1632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:01 GMT + - Fri, 22 Jan 2021 02:47:10 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml index b1a7ad6fbd2..beb8d3a91c2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:45 GMT + - Fri, 22 Jan 2021 02:46:16 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:46 GMT + - Fri, 22 Jan 2021 02:46:17 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:49.2155452Z\",\"lastModified\":\"2021-01-21T04:52:49.2155452Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:19.8752374Z\",\"lastModified\":\"2021-01-22T02:46:19.8752374Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:49 GMT + - Fri, 22 Jan 2021 02:46:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,15 +204,121 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"9d3b113c-5047-414a-b272-d47f0e4249af\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"8eb78b3a-5861-426b-96b2-33d3b28d9300\"\r\n + string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3b113c-5047-414a-b272-d47f0e4249af?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --ips --tags + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:46:25 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --streaming-protocol --encoding-type --ips --tags + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +326,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:52 GMT + - Fri, 22 Jan 2021 02:46:27 GMT expires: - '-1' odata-version: @@ -261,12 +367,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +387,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:52 GMT + - Fri, 22 Jan 2021 02:46:27 GMT expires: - '-1' odata-version: @@ -325,12 +431,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -345,7 +451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:54 GMT + - Fri, 22 Jan 2021 02:46:29 GMT expires: - '-1' odata-version: @@ -388,7 +494,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"bb073e4b-39ea-445e-81fa-601dbef6d42b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +507,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:55 GMT + - Fri, 22 Jan 2021 02:46:30 GMT expires: - '-1' odata-version: @@ -452,12 +558,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:57.4143694Z\",\"lastModified\":\"2021-01-21T04:52:57.4143694Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:32.7416247Z\",\"lastModified\":\"2021-01-22T02:46:32.7416247Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,7 +572,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -474,11 +580,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:57 GMT + - Fri, 22 Jan 2021 02:46:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -511,15 +617,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"aaaecadd-0ff1-4e0b-b2cf-53059daa87b0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"371c0969-b073-4284-8463-913073ebaff0\"\r\n + string: "{\r\n \"name\":\"5719924a-792b-4c8c-80bb-1103f1ab8409\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"58ccf6d7-79e2-4d35-826c-c176bcf39b06\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aaaecadd-0ff1-4e0b-b2cf-53059daa87b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +633,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:00 GMT + - Fri, 22 Jan 2021 02:46:35 GMT expires: - '-1' odata-version: @@ -568,12 +674,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.4456215Z\",\"lastModified\":\"2021-01-21T04:52:57.7076825Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:32.7728134Z\",\"lastModified\":\"2021-01-22T02:46:32.9649589Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -588,7 +694,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:01 GMT + - Fri, 22 Jan 2021 02:46:35 GMT expires: - '-1' odata-version: @@ -630,27 +736,27 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.4456215Z\",\"lastModified\":\"2021-01-21T04:52:57.7076825Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d84a049fc6bf48d6a7932189a4a98ba4\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f65183a9-603b-456f-9063-0eb3d5f5e620\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n - \ }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North + \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:32.7728134Z\",\"lastModified\":\"2021-01-22T02:46:32.9649589Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -665,7 +771,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:02 GMT + - Fri, 22 Jan 2021 02:46:37 GMT expires: - '-1' odata-version: @@ -712,17 +818,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:53:03 GMT + - Fri, 22 Jan 2021 02:46:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 pragma: - no-cache server: @@ -732,7 +838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -753,15 +859,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"aebf6f12-699c-42cc-8c4d-18b1961cc175\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"eded4d53-b0d4-4eb1-8605-6c4135702fe0\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aebf6f12-699c-42cc-8c4d-18b1961cc175?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -769,7 +875,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:07 GMT + - Fri, 22 Jan 2021 02:46:42 GMT expires: - '-1' odata-version: @@ -813,12 +919,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.2311395Z\",\"lastModified\":\"2021-01-21T04:52:49.4704458Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"614acaad3bf1411a966525b3da771c01\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"8dbdca98-fb20-47dc-845b-cc65d09e6fa0\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -833,7 +939,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:09 GMT + - Fri, 22 Jan 2021 02:46:44 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml index d55c1119e41..50a5f2b27ca 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml @@ -1,4 +1,57 @@ interactions: +- request: + body: '{"location": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", + "type": "Primary"}]}, "identity": {"type": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account create + Connection: + - keep-alive + Content-Length: + - '335' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --storage-account -l + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.Media'' within the specified time period."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '143' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jan 2021 02:46:43 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": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}]}, "identity": {"type": "None"}}' @@ -27,7 +80,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +93,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:43 GMT + - Fri, 22 Jan 2021 02:46:47 GMT expires: - '-1' odata-version: @@ -54,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -81,7 +134,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +147,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:43 GMT + - Fri, 22 Jan 2021 02:46:48 GMT expires: - '-1' odata-version: @@ -145,12 +198,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:47.5240193Z\",\"lastModified\":\"2021-01-21T04:52:47.5240193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.3135102Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +212,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +220,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:47 GMT + - Fri, 22 Jan 2021 02:46:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,15 +257,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"3704762f-4d5f-4226-9b48-86f4cce192be\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"89f5c084-d35c-498d-9745-7a3c006392c4\"\r\n + string: "{\r\n \"name\":\"8d90824d-6eac-4141-ac6b-cac8740cf684\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"990b706c-795a-4a41-afe9-651a18562f84\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3704762f-4d5f-4226-9b48-86f4cce192be?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:54 GMT expires: - '-1' odata-version: @@ -261,12 +314,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:55 GMT expires: - '-1' odata-version: @@ -325,12 +378,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -345,7 +398,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:53 GMT + - Fri, 22 Jan 2021 02:46:56 GMT expires: - '-1' odata-version: @@ -388,7 +441,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"cd6f5b3f-5e06-4a94-95d9-cf76654749a6\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -401,7 +454,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:53 GMT + - Fri, 22 Jan 2021 02:46:57 GMT expires: - '-1' odata-version: @@ -452,12 +505,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.215107Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:00.5515154Z\",\"lastModified\":\"2021-01-22T02:47:00.5515154Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -466,19 +519,19 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1561' + - '1563' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:57 GMT + - Fri, 22 Jan 2021 02:47:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -511,15 +564,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a78da036-926f-40fd-bb15-14eee519b926\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"2a5bbdf4-fed8-4bd1-a9d8-be818a79f27b\"\r\n + string: "{\r\n \"name\":\"24978520-ef43-4d1e-a54a-1d7e4a837f16\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"9992b65d-8dd4-4c4a-b6da-6cb50d639373\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a78da036-926f-40fd-bb15-14eee519b926?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -527,7 +580,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:00 GMT + - Fri, 22 Jan 2021 02:47:04 GMT expires: - '-1' odata-version: @@ -568,12 +621,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.5165207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:00.5670787Z\",\"lastModified\":\"2021-01-22T02:47:00.8547193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -584,11 +637,11 @@ interactions: cache-control: - no-cache content-length: - - '1561' + - '1562' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:01 GMT + - Fri, 22 Jan 2021 02:47:04 GMT expires: - '-1' odata-version: @@ -632,12 +685,12 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:47.5395914Z\",\"lastModified\":\"2021-01-21T04:52:47.8365506Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"860c9d8716b249c0a020468627950d06\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"5d13e955-77d8-4a29-8bd8-167716df2751\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -645,12 +698,12 @@ interactions: \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:57.215107Z\",\"lastModified\":\"2021-01-21T04:52:57.5165207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0e67d3612d2c47bca88171eaba0b671c\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:00.5670787Z\",\"lastModified\":\"2021-01-22T02:47:00.8547193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"b845d1b3-8377-4ec0-8d26-663295c3bf05\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -661,11 +714,11 @@ interactions: cache-control: - no-cache content-length: - - '3440' + - '3441' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:02 GMT + - Fri, 22 Jan 2021 02:47:06 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml index f69e1ae8b0a..c1fe7f6a8b6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"94a46a60-95da-4fd4-a58a-0630d133adb6\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"14ec0ac0-1aca-424f-83f6-d02b1b4979af\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:42 GMT + - Fri, 22 Jan 2021 02:46:34 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"94a46a60-95da-4fd4-a58a-0630d133adb6\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"14ec0ac0-1aca-424f-83f6-d02b1b4979af\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:44 GMT + - Fri, 22 Jan 2021 02:46:35 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:46.0283237Z\",\"lastModified\":\"2021-01-21T04:52:46.0283237Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:37.8393609Z\",\"lastModified\":\"2021-01-22T02:46:37.8393609Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:46 GMT + - Fri, 22 Jan 2021 02:46:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"bce3d6f7-dd55-465b-a997-c873c1f248cc\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"ab62b226-57a3-4928-aab3-4a88d0ecc567\"\r\n + string: "{\r\n \"name\":\"6719edb9-caaa-4f1f-ba2e-e38ac22f6b06\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"310176b9-e9e0-4981-bb09-f48a7b7c56da\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bce3d6f7-dd55-465b-a997-c873c1f248cc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:48 GMT + - Fri, 22 Jan 2021 02:46:41 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:46.0596069Z\",\"lastModified\":\"2021-01-21T04:52:47.4154924Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3e9f55fe19b54f239cc634cc02d94e43.channel.media.azure.net/82e2dadc26284a9ab953ae5e1f52ca9f/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:37.8549137Z\",\"lastModified\":\"2021-01-22T02:46:39.7150334Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d80c50e6938a4d5887408632e3bd7e54.channel.media.azure.net/28a0f90101304dc6babd35572416cd60/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/20547a55-f9bc-46f0-8cf5-dadcc65391ea/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/14764c69-e963-4ccf-95ae-c6b2c1f64540/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:48 GMT + - Fri, 22 Jan 2021 02:46:41 GMT expires: - '-1' odata-version: @@ -329,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 pragma: - no-cache server: @@ -370,15 +370,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"cf1fb849-1d52-48b0-8d6c-cca588f7a469\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"ab62b226-57a3-4928-aab3-4a88d0ecc567\"\r\n + string: "{\r\n \"name\":\"b1826578-1000-4c47-ac38-36b37cecfbaf\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"310176b9-e9e0-4981-bb09-f48a7b7c56da\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/cf1fb849-1d52-48b0-8d6c-cca588f7a469?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -386,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:52 GMT + - Fri, 22 Jan 2021 02:46:45 GMT expires: - '-1' odata-version: @@ -429,15 +429,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:46.0596069Z\",\"lastModified\":\"2021-01-21T04:52:52.3258709Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"82e2dadc26284a9ab953ae5e1f52ca9f\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://3e9f55fe19b54f239cc634cc02d94e43.channel.media.azure.net/82e2dadc26284a9ab953ae5e1f52ca9f/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:37.8549137Z\",\"lastModified\":\"2021-01-22T02:46:44.9349189Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d80c50e6938a4d5887408632e3bd7e54.channel.media.azure.net/28a0f90101304dc6babd35572416cd60/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"20547a55-f9bc-46f0-8cf5-dadcc65391ea\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/20547a55-f9bc-46f0-8cf5-dadcc65391ea/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/14764c69-e963-4ccf-95ae-c6b2c1f64540/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -450,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:53 GMT + - Fri, 22 Jan 2021 02:46:45 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml index b90260eb051..2dd15f52325 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"a9598655-9219-4544-90cc-33ed515307d8\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"3a28487a-5b46-40b6-b2b1-95bf14325709\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:42 GMT + - Fri, 22 Jan 2021 02:46:15 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"a9598655-9219-4544-90cc-33ed515307d8\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"3a28487a-5b46-40b6-b2b1-95bf14325709\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:43 GMT + - Fri, 22 Jan 2021 02:46:15 GMT expires: - '-1' odata-version: @@ -158,7 +158,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:45.5302789Z\",\"lastModified\":\"2021-01-21T04:52:45.5302789Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:17.704108Z\",\"lastModified\":\"2021-01-22T02:46:17.704108Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -181,19 +181,19 @@ interactions: \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2659' + - '2657' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:45 GMT + - Fri, 22 Jan 2021 02:46:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -227,15 +227,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"367c725f-bfd9-40a8-bdfd-ae6f442274b0\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0cb14e3b-c2fd-4162-8ccc-e270023e1dbb\"\r\n + string: "{\r\n \"name\":\"38be4352-7dc8-478f-91c4-c98a065a1277\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3563b673-43f5-435f-8ffc-5b2456905d52\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/367c725f-bfd9-40a8-bdfd-ae6f442274b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:47 GMT + - Fri, 22 Jan 2021 02:46:20 GMT expires: - '-1' odata-version: @@ -285,7 +285,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:45.5459118Z\",\"lastModified\":\"2021-01-21T04:52:45.822268Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:17.7200126Z\",\"lastModified\":\"2021-01-22T02:46:18.0111077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -310,11 +310,11 @@ interactions: cache-control: - no-cache content-length: - - '2657' + - '2658' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:47 GMT + - Fri, 22 Jan 2021 02:46:20 GMT expires: - '-1' odata-version: @@ -357,7 +357,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:45.5459118Z\",\"lastModified\":\"2021-01-21T04:52:45.822268Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:17.7200126Z\",\"lastModified\":\"2021-01-22T02:46:18.0111077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -382,11 +382,11 @@ interactions: cache-control: - no-cache content-length: - - '2657' + - '2658' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:49 GMT + - Fri, 22 Jan 2021 02:46:20 GMT expires: - '-1' odata-version: @@ -439,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 04:52:49 GMT + - Fri, 22 Jan 2021 02:46:21 GMT expires: - '-1' pragma: @@ -480,17 +480,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 pragma: - no-cache server: @@ -521,15 +521,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"aa94ba90-48ac-45f9-9b90-adc61fdfcc5f\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"afb47591-e6cb-44d3-9466-39e63fe36634\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa94ba90-48ac-45f9-9b90-adc61fdfcc5f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -537,7 +537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:52 GMT + - Fri, 22 Jan 2021 02:46:23 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml index 86c5d044db4..bf4c8011ca4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"c379863b-85d8-45f6-a21d-c34f06bbdd40\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"e470f47e-27d3-46ad-91c0-4201a5ed4864\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:43 GMT + - Fri, 22 Jan 2021 02:46:18 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -70,7 +70,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --tags --ips + - -a -n -g --streaming-protocol --encoding-type --access-token --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"c379863b-85d8-45f6-a21d-c34f06bbdd40\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"e470f47e-27d3-46ad-91c0-4201a5ed4864\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:44 GMT + - Fri, 22 Jan 2021 02:46:19 GMT expires: - '-1' odata-version: @@ -117,9 +117,10 @@ interactions: - request: body: '{"tags": {"key": "value"}, "location": "South India", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": - "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, - "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' + "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}, "accessToken": + "0abf356884d74b4aacbd7b1ebd3da0f7"}, "preview": {"accessControl": {"ip": {"allow": + []}}}, "encoding": {"encodingType": "Basic"}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -130,11 +131,11 @@ interactions: Connection: - keep-alive Content-Length: - - '410' + - '461' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --tags --ips + - -a -n -g --streaming-protocol --encoding-type --access-token --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -145,12 +146,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:52:49.6352655Z\",\"lastModified\":\"2021-01-21T04:52:49.6352655Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:22.6273175Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +160,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +168,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:50 GMT + - Fri, 22 Jan 2021 02:46:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -199,20 +200,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --tags --ips + - -a -n -g --streaming-protocol --encoding-type --access-token --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"0a6418e4-ae65-4bdb-92cf-a04ae72d14fd\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"02b2487e-e5b1-4725-837d-726a2dfc22b3\"\r\n + string: "{\r\n \"name\":\"3ad6a5b8-ce27-4e22-a153-5259c0b06764\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2fbf50d7-a6e6-4933-bee8-d862a863a8a7\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0a6418e4-ae65-4bdb-92cf-a04ae72d14fd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:53 GMT + - Fri, 22 Jan 2021 02:46:26 GMT expires: - '-1' odata-version: @@ -252,7 +253,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --tags --ips + - -a -n -g --streaming-protocol --encoding-type --access-token --tags --ips User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -261,12 +262,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.6508609Z\",\"lastModified\":\"2021-01-21T04:52:49.9589613Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:22.8370077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:54 GMT + - Fri, 22 Jan 2021 02:46:26 GMT expires: - '-1' odata-version: @@ -328,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:52:55 GMT + - Fri, 22 Jan 2021 02:46:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 pragma: - no-cache server: @@ -369,15 +370,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"73e26cea-5f39-4a77-a2a9-25fa231056fe\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"02b2487e-e5b1-4725-837d-726a2dfc22b3\"\r\n + string: "{\r\n \"name\":\"6e38fcbf-158d-49de-a1b9-c59cc5c98b59\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"2fbf50d7-a6e6-4933-bee8-d862a863a8a7\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/73e26cea-5f39-4a77-a2a9-25fa231056fe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:52:59 GMT + - Fri, 22 Jan 2021 02:46:30 GMT expires: - '-1' odata-version: @@ -428,15 +429,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:52:49.6508609Z\",\"lastModified\":\"2021-01-21T04:52:58.7816201Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"d2e44429b0af4112a633a910d7a6a47a\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cb7713710f4c45b68f6ced395fd3d139.channel.media.azure.net/d2e44429b0af4112a633a910d7a6a47a/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:30.9773826Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://77abca2f5edb4107a05e8a97d98c0608.channel.media.azure.net/0abf356884d74b4aacbd7b1ebd3da0f7/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f8cae52e-0e85-49ab-9659-d9ec0cb305bc\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/f8cae52e-0e85-49ab-9659-d9ec0cb305bc/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:00 GMT + - Fri, 22 Jan 2021 02:46:31 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml index d7b27cefbd7..d38bc3a1822 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"1d9fb861-ea4b-4d43-abbe-b4785cc0f0a5\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"21a3c13d-d75f-4a12-9273-490acdf6d3e9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:26 GMT + - Fri, 22 Jan 2021 02:47:38 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"1d9fb861-ea4b-4d43-abbe-b4785cc0f0a5\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"21a3c13d-d75f-4a12-9273-490acdf6d3e9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:27 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:31.5536207Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:43.8001133Z\",\"lastModified\":\"2021-01-22T02:47:43.8001133Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:31 GMT + - Fri, 22 Jan 2021 02:47:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"362148bb-c184-41cf-a69c-4c09fbeec758\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"a7075318-d59d-43ce-98cb-dca6f7078b54\"\r\n + string: "{\r\n \"name\":\"5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"06e1e9ee-d782-4d66-a444-5bfa295fda6e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/362148bb-c184-41cf-a69c-4c09fbeec758?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:35 GMT + - Fri, 22 Jan 2021 02:47:46 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:31.8219856Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:43.8157589Z\",\"lastModified\":\"2021-01-22T02:47:44.1234645Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:35 GMT + - Fri, 22 Jan 2021 02:47:47 GMT expires: - '-1' odata-version: @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:53:37 GMT + - Fri, 22 Jan 2021 02:47:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 pragma: - no-cache server: @@ -369,15 +369,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"bfd0ab91-ba7b-42bf-80f9-218bddda2eba\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"a7075318-d59d-43ce-98cb-dca6f7078b54\"\r\n + string: "{\r\n \"name\":\"6c77f84a-8078-4171-b4c0-25f98dc89fb1\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"06e1e9ee-d782-4d66-a444-5bfa295fda6e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfd0ab91-ba7b-42bf-80f9-218bddda2eba?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:40 GMT + - Fri, 22 Jan 2021 02:47:53 GMT expires: - '-1' odata-version: @@ -428,15 +428,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:31.5536207Z\",\"lastModified\":\"2021-01-21T04:53:40.2025431Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"bec4ad36300541098868aedeec4c092e\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://1737dafe814d4bb1b40a8ad30d3a8603.channel.media.azure.net/bec4ad36300541098868aedeec4c092e/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:43.8157589Z\",\"lastModified\":\"2021-01-22T02:47:52.5579676Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://77abca2f5edb4107a05e8a97d98c0608.channel.media.azure.net/a4b5e630f4024da5bc10a4fa0fa33fef/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"32ce9647-2d5b-4377-95c9-a1a5d397613c\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/32ce9647-2d5b-4377-95c9-a1a5d397613c/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/7589553f-fce0-4d29-b06f-7cceab774408/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -449,7 +449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:41 GMT + - Fri, 22 Jan 2021 02:47:54 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml index 515e893c1ba..367d9747156 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"9986b531-a040-4413-8f0e-80b4a5c0e886\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"6091c784-0682-45fc-adeb-0bf9bb5ddfe2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:34 GMT + - Fri, 22 Jan 2021 02:47:30 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"9986b531-a040-4413-8f0e-80b4a5c0e886\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"6091c784-0682-45fc-adeb-0bf9bb5ddfe2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:35 GMT + - Fri, 22 Jan 2021 02:47:32 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:39.3404929Z\",\"lastModified\":\"2021-01-21T04:53:39.3404929Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:35.6183775Z\",\"lastModified\":\"2021-01-22T02:47:35.6183775Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:39 GMT + - Fri, 22 Jan 2021 02:47:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"074cd3b3-dd1a-495d-8e6c-7a75c37e69c7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0caa344b-c433-43ad-8724-fb4b816a754a\"\r\n + string: "{\r\n \"name\":\"0bfd2569-ba57-4a7e-ae70-d61717f45b66\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f5f42414-e094-4fd8-ad8a-bbafae10d443\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/074cd3b3-dd1a-495d-8e6c-7a75c37e69c7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:42 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:39.3561171Z\",\"lastModified\":\"2021-01-21T04:53:41.6210223Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://7b4c2c5e7c1240dab0b41ed5fab07824.channel.media.azure.net/acc1080666154553a9efebb2a7a23548/ingest.isml\"\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:35.6496144Z\",\"lastModified\":\"2021-01-22T02:47:38.3746426Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://f98dd41dd6014aab88025caf188def39.channel.media.azure.net/f6569c3c21114300a0ea44abaab9eef4/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/bce71489-574f-45ca-abce-b4046bd06669/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/7a1a7597-972e-4100-ae0d-fe8c06663e10/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -282,7 +282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:43 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -331,17 +331,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:53:48 GMT + - Fri, 22 Jan 2021 02:47:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 pragma: - no-cache server: @@ -372,15 +372,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"12d75963-f0ac-48d8-a7d0-3612dc1c3c98\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0caa344b-c433-43ad-8724-fb4b816a754a\"\r\n + string: "{\r\n \"name\":\"20e24474-59b5-450b-8d3f-835849c2594c\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f5f42414-e094-4fd8-ad8a-bbafae10d443\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/12d75963-f0ac-48d8-a7d0-3612dc1c3c98?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -388,7 +388,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:51 GMT + - Fri, 22 Jan 2021 02:47:44 GMT expires: - '-1' odata-version: @@ -431,12 +431,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:39.3561171Z\",\"lastModified\":\"2021-01-21T04:53:48.4034285Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"acc1080666154553a9efebb2a7a23548\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:35.6496144Z\",\"lastModified\":\"2021-01-22T02:47:44.9765026Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bce71489-574f-45ca-abce-b4046bd06669\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -451,7 +451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:52 GMT + - Fri, 22 Jan 2021 02:47:45 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml index b5a4b2c7cb6..ac1b920eb93 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"de690c17-3d5f-416a-a9b2-d4e911c0d4a5\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"5fc9b0b0-765d-4f1b-aa9d-a437d408a5ab\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:28 GMT + - Fri, 22 Jan 2021 02:47:32 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"de690c17-3d5f-416a-a9b2-d4e911c0d4a5\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"5fc9b0b0-765d-4f1b-aa9d-a437d408a5ab\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:30 GMT + - Fri, 22 Jan 2021 02:47:33 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:32.6108109Z\",\"lastModified\":\"2021-01-21T04:53:32.6108109Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:47:36.0797774Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:32 GMT + - Fri, 22 Jan 2021 02:47:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"aa784ca3-e472-4c4e-b019-221d55049299\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n + string: "{\r\n \"name\":\"9d3dd247-3fbd-42a1-870a-2c699460c356\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/aa784ca3-e472-4c4e-b019-221d55049299?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:36 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:32.6420384Z\",\"lastModified\":\"2021-01-21T04:53:35.1304418Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://373d4c43907d4d9bb11e5c002cfde926.channel.media.azure.net/c086cfbe61a745c1a6cab01a38096ea9/ingest.isml\"\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:47:38.344416Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d74ee1f1c3a54e4dac895adf3e4cf89e.channel.media.azure.net/68f35dde7c0241cca7e3dffd1f9b5130/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/be0c63a9-7510-4889-93ea-d814372b6d57/preview.ism/manifest\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/568f8ae3-f5d9-459e-8773-2f740577ff83/preview.ism/manifest\"\r\n \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1915' + - '1914' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:36 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -329,7 +329,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"190cfca0-988a-44ea-95a8-fe795bd16f66\",\"created\":\"2021-01-21T04:53:38.197Z\",\"lastModified\":\"2021-01-21T04:53:38.197Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"1d3c2d9f-e523-49e4-87e4-94e61e24b15f\",\"created\":\"2021-01-22T02:47:41.713Z\",\"lastModified\":\"2021-01-22T02:47:41.713Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -339,7 +339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:38 GMT + - Fri, 22 Jan 2021 02:47:41 GMT expires: - '-1' odata-version: @@ -385,11 +385,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:39.4999564Z\",\"lastModified\":\"2021-01-21T04:53:39.4999564Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:43.5441054Z\",\"lastModified\":\"2021-01-22T02:47:43.5441054Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -397,11 +397,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:39 GMT + - Fri, 22 Jan 2021 02:47:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -434,15 +434,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"80725409-5a7f-4aaf-ab95-b6247643a2c3\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n + string: "{\r\n \"name\":\"e2434d31-33df-44f9-971e-5429fb9bcdd7\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/80725409-5a7f-4aaf-ab95-b6247643a2c3?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -450,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:42 GMT + - Fri, 22 Jan 2021 02:47:46 GMT expires: - '-1' odata-version: @@ -491,7 +491,7 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:40.1406051Z\",\"lastModified\":\"2021-01-21T04:53:40.7430942Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:44.1553837Z\",\"lastModified\":\"2021-01-22T02:47:44.6689668Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: @@ -501,7 +501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:42 GMT + - Fri, 22 Jan 2021 02:47:47 GMT expires: - '-1' odata-version: @@ -549,11 +549,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:45.6502103Z\",\"lastModified\":\"2021-01-21T04:53:45.6502103Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:49.7122474Z\",\"lastModified\":\"2021-01-22T02:47:49.7122474Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -561,11 +561,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:48 GMT + - Fri, 22 Jan 2021 02:47:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -598,15 +598,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"70c9d63b-af26-46ac-8214-7a6ff691ae47\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n + string: "{\r\n \"name\":\"f8587dfe-6d87-4762-8d63-df93e3b5aa87\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/70c9d63b-af26-46ac-8214-7a6ff691ae47?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -614,7 +614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:50 GMT + - Fri, 22 Jan 2021 02:47:53 GMT expires: - '-1' odata-version: @@ -655,17 +655,17 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:46.3377643Z\",\"lastModified\":\"2021-01-21T04:53:46.7756531Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:50.307372Z\",\"lastModified\":\"2021-01-22T02:47:50.7091373Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '648' + - '647' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:51 GMT + - Fri, 22 Jan 2021 02:47:53 GMT expires: - '-1' odata-version: @@ -708,19 +708,19 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:40.1406051Z\",\"lastModified\":\"2021-01-21T04:53:40.7430942Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:44.1553837Z\",\"lastModified\":\"2021-01-22T02:47:44.6689668Z\",\"hls\":null\r\n \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:46.3377643Z\",\"lastModified\":\"2021-01-21T04:53:46.7756531Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:50.307372Z\",\"lastModified\":\"2021-01-22T02:47:50.7091373Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1357' + - '1356' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:53 GMT + - Fri, 22 Jan 2021 02:47:55 GMT expires: - '-1' odata-version: @@ -769,17 +769,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Jan 2021 04:53:54 GMT + - Fri, 22 Jan 2021 02:47:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 pragma: - no-cache server: @@ -810,15 +810,68 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"fa359b0e-1b19-4004-a385-810da0ed1cf9\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 22 Jan 2021 02:48:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -n -g --remove-outputs-on-stop + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b74c4af8-1c7b-49be-b2d7-2e74aa3705b1\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"607657f3-3700-4971-8d7f-8cb45f97484b\"\r\n + string: "{\r\n \"name\":\"fa359b0e-1b19-4004-a385-810da0ed1cf9\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b74c4af8-1c7b-49be-b2d7-2e74aa3705b1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -826,7 +879,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:57 GMT + - Fri, 22 Jan 2021 02:48:02 GMT expires: - '-1' odata-version: @@ -869,12 +922,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:32.6420384Z\",\"lastModified\":\"2021-01-21T04:53:56.8366682Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c086cfbe61a745c1a6cab01a38096ea9\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:48:02.2014537Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"be0c63a9-7510-4889-93ea-d814372b6d57\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n @@ -889,7 +942,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:58 GMT + - Fri, 22 Jan 2021 02:48:02 GMT expires: - '-1' odata-version: @@ -940,7 +993,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:59 GMT + - Fri, 22 Jan 2021 02:48:03 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml index b10094e1feb..05102134558 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"7089e441-a1b5-468f-934b-e74528fdbed1\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5a9c59e6-833c-44b4-9089-d25a612959a4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:18 GMT + - Fri, 22 Jan 2021 02:47:31 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"7089e441-a1b5-468f-934b-e74528fdbed1\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5a9c59e6-833c-44b4-9089-d25a612959a4\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:19 GMT + - Fri, 22 Jan 2021 02:47:32 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-21T04:53:22.8638997Z\",\"lastModified\":\"2021-01-21T04:53:22.8638997Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.5233447Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:23 GMT + - Fri, 22 Jan 2021 02:47:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"bfed071c-5321-4660-9c0b-f2925658a734\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6cc51c5-6960-4684-bd8d-8cd762d727f0\"\r\n + string: "{\r\n \"name\":\"8a0aeac6-d400-4565-87a1-f5f7a4162b96\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f6fe71d0-a5c8-4465-ac50-c948553071e7\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/bfed071c-5321-4660-9c0b-f2925658a734?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:25 GMT + - Fri, 22 Jan 2021 02:47:39 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:22.8795108Z\",\"lastModified\":\"2021-01-21T04:53:23.1408139Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.7845229Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:25 GMT + - Fri, 22 Jan 2021 02:47:40 GMT expires: - '-1' odata-version: @@ -325,12 +325,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T04:53:22.8795108Z\",\"lastModified\":\"2021-01-21T04:53:23.1408139Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"8011d305bd08400a8d0ec1c420d0ebda\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.7845229Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"623b3246-aa1e-45a7-a15a-c13e516883c9\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 04:53:28 GMT + - Fri, 22 Jan 2021 02:47:41 GMT expires: - '-1' odata-version: @@ -370,10 +370,10 @@ interactions: "asd", "input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "8011d305bd08400a8d0ec1c420d0ebda", + "keyFrameIntervalDuration": "PT2S", "accessToken": "839c42286fd2430d86fcc5bbb642a08b", "endpoints": []}, "preview": {"endpoints": [], "accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", - "address": "0.0.0.0"}]}}, "previewLocator": "623b3246-aa1e-45a7-a15a-c13e516883c9", + "address": "0.0.0.0"}]}}, "previewLocator": "6f328360-46fe-4ba9-a673-29f2e3c74378", "streamingPolicyName": "Predefined_ClearStreamingOnly"}, "encoding": {"encodingType": "None"}, "transcriptions": [], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n Date: Fri, 19 Feb 2021 09:43:47 -0800 Subject: [PATCH 22/30] added examples to encryption and updated mru file --- .../azure/cli/command_modules/ams/_help.py | 13 ++++++++++--- .../azure/cli/command_modules/ams/operations/mru.py | 5 +++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index 216e65393bf..a49148864d0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -60,6 +60,13 @@ helps['ams account encryption set'] = """ type: command short-summary: Set the encryption settings for an Azure Media Services account. + examples: + - name: Set the media account's encryption to a customer managed key + text: > + az ams account encryption create -a myAmsAccount -g myRG --key-source CustomerKey --key-vault-id keyVaultId + - name: Set the media account's encryption to a system managed key + text: > + az ams account encryption create -a myAmsAccount -g myRG --key-source SystemKey """ helps['ams account storage'] = """ @@ -613,15 +620,15 @@ helps['ams account mru'] = """ type: group - short-summary: Manage media reserved units for an Azure Media Services account. + short-summary: Manage media reserved units for an Azure Media Services account. This doesn't work with accounts created with 2020-05-01 version of the Media Services API or later. Accounts created this way no longer need to set media reserved units as the system will automaticaly scale up and down based on load. """ helps['ams account mru set'] = """ type: command - short-summary: Set the type and number of media reserved units for an Azure Media Services account. + short-summary: Set the type and number of media reserved units for an Azure Media Services account. This doesn't work with accounts created with 2020-05-01 version of the Media Services API or later. Accounts created this way no longer need to set media reserved units as the system will automaticaly scale up and down based on load. """ helps['ams account mru show'] = """ type: command - short-summary: Show the details of media reserved units for an Azure Media Services account. + short-summary: Show the details of media reserved units for an Azure Media Services account. This doesn't work with accounts created with 2020-05-01 version of the Media Services API or later. Accounts created this way no longer need to set media reserved units as the system will automaticaly scale up and down based on load. """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index 7fe1e174aae..ae26d00987c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -20,8 +20,9 @@ def get_mru(client, cmd, resource_group_name, account_name): account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported' - ' by the CLI. Please use the Azure Portal to scale Media Reserved Units.') + raise CLIError('The media reserved unit operation failed as the Media Services account was created with the' + ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' + ' media reserved units as the system will automatically scale up and down based on load.') mru = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name).get_mru() return _map_mru(mru) From 415d7bdf6671033aace1ade95aebdf104225545d Mon Sep 17 00:00:00 2001 From: hivyas Date: Fri, 19 Feb 2021 13:22:30 -0800 Subject: [PATCH 23/30] updated strings and reran tests --- .../azure/cli/command_modules/ams/_params.py | 8 +- .../cli/command_modules/ams/_sdk_utils.py | 2 +- .../ams/operations/encryption.py | 4 +- .../ams/operations/live_event.py | 4 +- .../cli/command_modules/ams/operations/mru.py | 5 +- .../test_ams_encryption_set_show.yaml | 104 +-- .../recordings/test_live_event_create.yaml | 850 +++++------------- .../recordings/test_live_event_delete.yaml | 282 ++---- .../recordings/test_live_event_list.yaml | 207 ++--- .../recordings/test_live_event_reset.yaml | 100 +-- .../recordings/test_live_event_show.yaml | 70 +- .../recordings/test_live_event_standby.yaml | 88 +- .../recordings/test_live_event_start.yaml | 98 +- .../recordings/test_live_event_stop.yaml | 204 ++++- ...st_live_event_stop_and_remove_outputs.yaml | 217 ++--- .../recordings/test_live_event_update.yaml | 96 +- .../test_ams_account_encryption_scenarios.py | 2 +- .../latest/test_ams_live_event_scenarios.py | 26 +- 18 files changed, 927 insertions(+), 1440 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index d7d618584f1..027a6849829 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -60,7 +60,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account') as c: c.argument('location', arg_type=get_location_type(self.cli_ctx), - validator=get_default_location_from_resource_group, required=False) + validator=get_default_location_from_resource_group, required=True) c.argument('tags', arg_type=tags_type) with self.argument_context('ams account create') as c: @@ -103,8 +103,8 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account encryption') as c: c.argument('account_name', account_name_arg_type) c.argument('key_source', help='The encryption key source (provider). Allowed values: SystemKey, CustomerKey.') - c.argument('key_vault_id', help='The Uri of the KeyVault.') - c.argument('key_version', help='The version of KeyVault key.') + c.argument('key_identifier', help='The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).') + c.argument('current_key_identifier', help='The current key used to encrypt the Media Services account, including the key version.') with self.argument_context('ams transform') as c: c.argument('account_name', account_name_arg_type) @@ -371,7 +371,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('stream_options', nargs='+', arg_type=get_enum_type(StreamOptionsFlag), help='The options to use for the LiveEvent. This value is specified at creation time and cannot be updated.') c.argument('transcription_lang', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state') - c.argument('custom_hostname', help='When useStaticHostname is set to true, the hostnamePrefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') + c.argument('hostname_prefix', help='When useStaticHostname is set to true, hostname_prefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') c.argument('remove_outputs_on_stop', action='store_true', help='Remove live outputs on stop.') with self.argument_context('ams live-event list') as c: diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 41add8a8a29..9dc931355ac 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -59,7 +59,7 @@ def get_media_type(): def get_encoding_types(): - return ['Basic', 'None', 'Standard'] + return ['Premium1080p', 'None', 'Standard'] def get_transcription_langauges(): diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index 42226fabcb7..45a5cda8528 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -17,12 +17,12 @@ def get_encryption(client, resource_group_name, account_name): def set_encryption(client, resource_group_name, account_name, key_source=None, - key_version=None, key_vault_id=None): + current_key_identifier=None, key_identifier=None): try: account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if key_source == 'CustomerKey': - key_vault_props = KeyVaultProperties(key_identifier=key_vault_id, current_key_identifier=key_version) + key_vault_props = KeyVaultProperties(key_identifier=key_identifier, current_key_identifier=current_key_identifier) else: key_vault_props = None encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py index 855938a8d52..a04b20b38cf 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/live_event.py @@ -17,7 +17,7 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre tags=None, description=None, key_frame_interval_duration=None, access_token=None, no_wait=False, preview_ips=None, preview_locator=None, streaming_policy_name=None, alternative_media_id=None, client_access_policy=None, cross_domain_policy=None, stream_options=None, - transcription_lang=None, use_static_hostname=False, custom_hostname=None): + transcription_lang=None, use_static_hostname=False, hostname_prefix=None): from azure.cli.command_modules.ams._client_factory import (get_mediaservices_client) @@ -52,7 +52,7 @@ def create(cmd, client, resource_group_name, account_name, live_event_name, stre stretch_mode=stretch_mode, key_frame_interval=key_frame_interval), tags=tags, stream_options=stream_options, cross_site_access_policies=policies, description=description, transcriptions=transcriptions, - use_static_hostname=use_static_hostname, hostname_prefix=custom_hostname) + use_static_hostname=use_static_hostname, hostname_prefix=hostname_prefix) return sdk_no_wait(no_wait, client.create, resource_group_name=resource_group_name, account_name=account_name, live_event_name=live_event_name, parameters=live_event, auto_start=auto_start) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index ae26d00987c..7a7fe8a273b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -31,8 +31,9 @@ def set_mru(client, cmd, resource_group_name, account_name, count=None, type=Non account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('Scaling Media Reserved Units for accounts created using the latest api is not supported' - ' by the CLI. Please use the Azure Portal to scale Media Reserved Units.') + raise CLIError('The media reserved unit operation failed as the Media Services account was created with the' + ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' + ' media reserved units as the system will automatically scale up and down based on load.') client = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name) mru = client.get_mru() diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index 8ddaebada47..9ee7543f2a2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:17:35 GMT + - Fri, 19 Feb 2021 20:57:01 GMT expires: - '-1' odata-version: @@ -80,7 +80,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-21T00:16:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-19T20:55:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -89,7 +89,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:35 GMT + - Fri, 19 Feb 2021 20:57:01 GMT expires: - '-1' pragma: @@ -121,10 +121,10 @@ interactions: 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":"508c96e0-d4ff-4c30-b886-34c377353339","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","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","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":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"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-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-12-22T11:43:26Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-12-22T11:29:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2020-11-03T22:16:58Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-10-29T23:29:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2020-10-17T07:34:24Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2020-08-14T22:41:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T13:46:47Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-05T02:07:54Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-08-08T09:15:42Z","creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","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","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":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"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":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2021-02-10T02:01:19Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-12-22T11:29:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2020-12-12T18:50:19Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2020-11-03T22:16:58Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-10-29T23:29:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2020-10-17T07:34:24Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2020-08-14T22:41:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T06:36:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T13:46:47Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-05T02:07:54Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T15:13:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2019-08-10T16:02:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2019-08-10T01:46:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2019-08-09T06:00:29Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2019-08-08T10:08:32Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2019-08-08T10:08:27Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-08-08T09:15:42Z","creationType":null,"department":"Azure Media Srvc SWE R&D 1010","dirSyncEnabled":true,"displayName":"Himani Vyas","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Himani","immutableId":"1288805","isCompromised":null,"jobTitle":"SOFTWARE ENGINEER","lastDirSyncTime":"2020-11-05T14:58:27Z","legalAgeGroupClassification":null,"mail":"Himani.Vyas@microsoft.com","mailNickname":"hivyas","mobile":null,"onPremisesDistinguishedName":"CN=Himani - Vyas,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-37530395","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"43/4Q10","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"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":"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":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange + Vyas,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-37530395","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"43/4Q10","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"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":"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":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=279f56e025554d2b8486a80e06283c65-Himani Vyas","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=7955093e03494ca4847a2240d6994d4a-Himani Vyas","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=14152fdb734040d0b2971335a1b52018-Himani @@ -138,25 +138,25 @@ interactions: cache-control: - no-cache content-length: - - '16736' + - '16898' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Thu, 21 Jan 2021 00:17:36 GMT + - Fri, 19 Feb 2021 20:57:01 GMT duration: - - '629849' + - '495160' expires: - '-1' ocp-aad-diagnostics-server-name: - - CjDen3tOMbktu0pngbo/hnIwfAwGBugXGj6jj7IWIww= + - O/gujSSLte2MUoyUsZ6+IL3PDKIjLaKTuClKymqgLfU= ocp-aad-session-key: - - FavUfmjKtAABcyBIdEBlfM4NRrPTwOozsWC0JHn9ns7rMtQJTR-K8Uppdq18l8lm55MKV6-5-suMLZ2g3pOsEkU2B_68NXPPxPtd_n4ANWn2VZIK-y2kDKX5m251kEUt.qvP2kUQ_LLobDHMiL5-Jq8Q9V9rf9SEQngHUbqKqGPU + - 71rUXkqllAyeWOZ6En6rorAJevZimGvAczwspDR5lOrI5nEHb1b4o6OZX47LEOc10csfZDATSJhxucpIBgtoStPPHcpubYw4NcVQZky0fJiOhM3Cu2yz2PJlGeFH_MDH.30liPgiq4NejJ0hnjCQprGz59-wIIYZYi0qeauEo9mM pragma: - no-cache request-id: - - e2ee12b3-c519-4b25-ba7a-5fc039d2d899 + - 4a9a0fdb-04af-439b-8ad9-e94d1343a2b1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:37 GMT + - Fri, 19 Feb 2021 20:57:02 GMT expires: - '-1' pragma: @@ -230,9 +230,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.0.104.232 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:38 GMT + - Fri, 19 Feb 2021 20:57:02 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: - - 1.2.139.0 + - 1.2.164.2 x-powered-by: - ASP.NET status: @@ -315,7 +315,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"y2Va6E7cq7M3MX7skFQ6HGoqKQowJF-AFoi1rwg1VaNclvBLA2mm2t21414GKLkylktUvWWMPGjfU_hXPFzxZrjlnNnpDgpuirqWG9LQ3ADU8gr5pkYWgccJNylPK28utG_gwqajfxUAEMQMzy3twYrxylR5w-vSZ8WeUfIUR540ITCx5KSj5DlmQWxHso6hWvm-vxvF7OyYS27RYMm8CI7_x_JSD7KEuiRy4RZ4uHPfOU-wCN1qf-ezLCdwpI28JY1lPEHNjdIRv29qeByGJnFi3OnlLawxf8exBAoPEfHv4KFVTgTKFCiq7cUbuzl-HVdZGLjJIam776F98cO8AQ","e":"AQAB"},"attributes":{"enabled":true,"created":1611188258,"updated":1611188258,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"3yTYMUvvsF8qTpnuOl22y_pP3Di4pYHsUF4ieH9VoGZ4CJMgFs60zUwZYwAp_w51mV-liciXExQ9HU-bCXsPVCQzyQeOO9_APQ307Ya_ujxgVmVEu1PoZlUukstoDEavWnhaGZWA3X4Up_t6OdZ_5f-m3wG2u9DnEAAk35j2QjKPnHDzqnPQ-5YI436Ws6YEun-GLl0KY2G6k71qQiEJjOTjMTlH6CLgOJGZCVoue9WMxdmwFLm0SrhtXORipfO_RClRwbJZjF9s5-xNkuRqNKzqmF0ZlUYVaZ89UP8t90Wa8KAo8VNZ_gPPytRcNjJlbmEHn47KGFHUzxJLoiw3HQ","e":"AQAB"},"attributes":{"enabled":true,"created":1613768224,"updated":1613768224,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:38 GMT + - Fri, 19 Feb 2021 20:57:04 GMT expires: - '-1' pragma: @@ -338,7 +338,7 @@ interactions: x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: - - 1.2.139.0 + - 1.2.164.2 x-powered-by: - ASP.NET status: @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:37 GMT + - Fri, 19 Feb 2021 20:57:05 GMT expires: - '-1' pragma: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:38 GMT + - Fri, 19 Feb 2021 20:57:05 GMT expires: - '-1' pragma: @@ -432,7 +432,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.0.104.232 x-powered-by: - ASP.NET status: @@ -448,8 +448,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b", - "permissions": {"keys": ["unwrapKey", "wrapKey", "get"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "9812b8b2-6843-437f-ad54-603ecdb5ddd1", + "permissions": {"keys": ["get", "wrapKey", "unwrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -473,7 +473,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b","permissions":{"keys":["unwrapKey","wrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"9812b8b2-6843-437f-ad54-603ecdb5ddd1","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -482,7 +482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Jan 2021 00:17:38 GMT + - Fri, 19 Feb 2021 20:57:05 GMT expires: - '-1' pragma: @@ -500,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.0.104.232 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -520,7 +520,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -g --key-source --key-vault-id + - -a -g --key-source --key-identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -531,10 +531,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -544,7 +544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:17:39 GMT + - Fri, 19 Feb 2021 20:57:05 GMT expires: - '-1' odata-version: @@ -567,7 +567,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -583,7 +583,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -g --key-source --key-vault-id + - -a -g --key-source --key-identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -594,11 +594,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -608,7 +608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:17:42 GMT + - Fri, 19 Feb 2021 20:57:12 GMT expires: - '-1' odata-version: @@ -619,13 +619,17 @@ 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-writes: - - '1199' + - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -649,11 +653,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"ed7bd1ab-5b0a-4129-bcd3-39f0a8794d4b\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/b6b3e81de36f46ec9bb7bb2768eb129e\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"5bd5d0b4-bd2d-4283-b1ae-b51c4edf175b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\"\r\n + \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -663,7 +667,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:17:43 GMT + - Fri, 19 Feb 2021 20:57:12 GMT expires: - '-1' odata-version: @@ -714,7 +718,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:17:47 GMT + - Fri, 19 Feb 2021 20:57:15 GMT expires: - '-1' pragma: @@ -726,7 +730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -758,7 +762,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:17:49 GMT + - Fri, 19 Feb 2021 20:57:17 GMT expires: - '-1' pragma: @@ -772,7 +776,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.0.104.232 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml index d0aea1f5f80..5c31393dae8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_create.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"dc8d20b7-9b52-4a70-abd1-8c5d8d768a8c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c5ff9ae0-32dd-45e3-ae24-9061a30bf646\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:18 GMT + - Fri, 19 Feb 2021 21:14:24 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -73,7 +73,7 @@ interactions: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -84,20 +84,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"dc8d20b7-9b52-4a70-abd1-8c5d8d768a8c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c5ff9ae0-32dd-45e3-ae24-9061a30bf646\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.7509509Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.7509509Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '784' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:18 GMT + - Fri, 19 Feb 2021 21:14:25 GMT expires: - '-1' odata-version: @@ -126,7 +126,7 @@ interactions: "preview": {"accessControl": {"ip": {"allow": [{"name": "le000004_192.168.0.0", "address": "192.168.0.0", "subnetPrefixLength": 28}, {"name": "le000004_0.0.0.0", "address": "0.0.0.0"}]}}, "previewLocator": "88888888-0000-0000-0000-000000000001"}, - "encoding": {"encodingType": "Basic", "stretchMode": "AutoSize", "keyFrameInterval": + "encoding": {"encodingType": "Standard", "stretchMode": "AutoSize", "keyFrameInterval": "PT2S"}, "transcriptions": [{"language": "ca-ES"}], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n \r\n @@ -146,14 +146,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1646' + - '1649' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -164,7 +164,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:20.8226933Z\",\"lastModified\":\"2021-01-22T02:46:20.8226933Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:27.5427788Z\",\"lastModified\":\"2021-02-19T21:14:27.5427788Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -175,7 +175,7 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -188,19 +188,19 @@ interactions: \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2794' + - '2797' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:20 GMT + - Fri, 19 Feb 2021 21:14:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -231,20 +231,20 @@ interactions: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -252,7 +252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:23 GMT + - Fri, 19 Feb 2021 21:14:29 GMT expires: - '-1' odata-version: @@ -287,20 +287,20 @@ interactions: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -308,7 +308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:25 GMT + - Fri, 19 Feb 2021 21:14:31 GMT expires: - '-1' odata-version: @@ -343,28 +343,28 @@ interactions: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"a7e6a2e7-7ff2-43c2-b24f-30515135cb9b\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a7e6a2e7-7ff2-43c2-b24f-30515135cb9b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: - - '171' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:27 GMT + - Fri, 19 Feb 2021 21:14:33 GMT expires: - '-1' odata-version: @@ -399,51 +399,28 @@ interactions: - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips --access-token --description --client-access-policy --cross-domain-policy - --use-static-hostname --custom-hostname --stretch-mode + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:20.8383063Z\",\"lastModified\":\"2021-01-22T02:46:27.125862Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n - \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n - \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n - \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n - \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n - \ \\r\\n \\r\\n - \ \\r\\n - \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n - \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n - \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n + \ }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: - - '3600' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:27 GMT + - Fri, 19 Feb 2021 21:14:35 GMT expires: - '-1' odata-version: @@ -463,59 +440,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"removeOutputsOnStop": false}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams live-event stop - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2020-05-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 22 Jan 2021 02:46:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -524,24 +448,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event create Connection: - keep-alive ParameterSetName: - - -a -n -g + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -549,7 +476,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:31 GMT + - Fri, 19 Feb 2021 21:14:38 GMT expires: - '-1' odata-version: @@ -577,24 +504,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event create Connection: - keep-alive ParameterSetName: - - -a -n -g + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -602,7 +532,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:33 GMT + - Fri, 19 Feb 2021 21:14:40 GMT expires: - '-1' odata-version: @@ -630,32 +560,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event create Connection: - keep-alive ParameterSetName: - - -a -n -g + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"43c6da10-2c52-4c1a-ae7d-1f560110f295\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' + - '171' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:35 GMT + - Fri, 19 Feb 2021 21:14:43 GMT expires: - '-1' odata-version: @@ -683,32 +616,58 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event create Connection: - keep-alive ParameterSetName: - - -a -n -g + - -a -n -g --auto-start --transcription-lang --streaming-protocol --encoding-type + --key-frame-interval --tags --stream-options --preview-locator --ips --preview-ips + --access-token --description --client-access-policy --cross-domain-policy + --use-static-hostname --hostname-prefix --stretch-mode User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01&autoStart=true response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:27.5427788Z\",\"lastModified\":\"2021-02-19T21:14:41.6337908Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n + \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n + \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n + \ \\r\\n \\r\\n + \ \\r\\n + \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' + - '3604' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:37 GMT + - Fri, 19 Feb 2021 21:14:43 GMT expires: - '-1' odata-version: @@ -729,7 +688,7 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"removeOutputsOnStop": false}' headers: Accept: - application/json @@ -739,48 +698,48 @@ interactions: - ams live-event stop Connection: - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004/stop?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" + string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal + - '0' date: - - Fri, 22 Jan 2021 02:46:39 GMT + - Fri, 19 Feb 2021 21:14:44 GMT expires: - '-1' - odata-version: - - '4.0' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -798,15 +757,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"6f49b1d5-8401-4afd-89b8-70e355f77a91\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -814,7 +773,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:41 GMT + - Fri, 19 Feb 2021 21:14:46 GMT expires: - '-1' odata-version: @@ -851,15 +810,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"6f49b1d5-8401-4afd-89b8-70e355f77a91\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -867,7 +826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:43 GMT + - Fri, 19 Feb 2021 21:14:48 GMT expires: - '-1' odata-version: @@ -904,15 +863,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"6f49b1d5-8401-4afd-89b8-70e355f77a91\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -920,7 +879,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:45 GMT + - Fri, 19 Feb 2021 21:14:50 GMT expires: - '-1' odata-version: @@ -957,23 +916,23 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"6f49b1d5-8401-4afd-89b8-70e355f77a91\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' + - '171' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:48 GMT + - Fri, 19 Feb 2021 21:14:52 GMT expires: - '-1' odata-version: @@ -1009,24 +968,49 @@ interactions: User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:27.5427788Z\",\"lastModified\":\"2021-02-19T21:14:52.0270407Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n + \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n + \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n + \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n + \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n + \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n + \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n + \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n + \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n + \ \\r\\n \\r\\n + \ \\r\\n + \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n + \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n + \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n + \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' + - '3604' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:50 GMT + - Fri, 19 Feb 2021 21:14:53 GMT expires: - '-1' odata-version: @@ -1054,51 +1038,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" + string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal + - '0' date: - - Fri, 22 Jan 2021 02:46:52 GMT + - Fri, 19 Feb 2021 21:14:54 GMT expires: - '-1' - odata-version: - - '4.0' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 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-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1107,7 +1089,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams live-event stop + - ams live-event delete Connection: - keep-alive ParameterSetName: @@ -1116,15 +1098,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"ae2a9e13-872b-4746-bd8a-69ef4a123d0a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1132,7 +1114,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:54 GMT + - Fri, 19 Feb 2021 21:14:57 GMT expires: - '-1' odata-version: @@ -1152,400 +1134,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:46:56 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:46:58 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:47:00 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:47:02 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"49c70491-2041-4b86-9cef-7a51a545736d\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/49c70491-2041-4b86-9cef-7a51a545736d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '171' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:47:04 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:20.8383063Z\",\"lastModified\":\"2021-01-22T02:47:04.2874891Z\",\"useStaticHostname\":true,\"streamOptions\":[\r\n - \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmp://custom000005-ams000003-usct.channel.media.azure.net:1936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2935/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ },{\r\n \"protocol\":\"RTMP\",\"url\":\"rtmps://custom000005-ams000003-usct.channel.media.azure.net:2936/live/0abf356884d74b4aacbd7b1ebd3da0f7\"\r\n - \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n - \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_5.6.7.8\",\"address\":\"5.6.7.8\",\"subnetPrefixLength\":null\r\n - \ },{\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"88888888-0000-0000-0000-000000000001\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n - \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_192.168.0.0\",\"address\":\"192.168.0.0\",\"subnetPrefixLength\":28\r\n - \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n - \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n {\r\n - \ \"protocol\":\"FragmentedMP4\",\"url\":\"https://custom000005-ams000003.preview-usct.channel.media.azure.net/88888888-0000-0000-0000-000000000001/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n - \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n - \ \\r\\n \\r\\n - \ \\r\\n - \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\"crossDomainPolicy\":\"\\r\\n\\r\\n\\r\\n - \ \\r\\n\"\r\n },\"hostnamePrefix\":\"custom000005\",\"transcriptions\":[\r\n - \ {\r\n \"language\":\"ca-ES\",\"inputTrackSelection\":[\r\n \r\n - \ ],\"outputTranscriptionTrack\":null\r\n }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3601' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:47:06 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents/le000004?api-version=2020-05-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 22 Jan 2021 02:47:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 - 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-deletes: - - '14997' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1563,15 +1151,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e56125d7-465c-4381-9708-777cca55ee25\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"b6bd676b-40c3-4ae9-aaf4-052e0127b7a9\"\r\n + string: "{\r\n \"name\":\"ae2a9e13-872b-4746-bd8a-69ef4a123d0a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6d0d386d-2dd1-419e-b73e-cc66d331538e\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1579,7 +1167,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:08 GMT + - Fri, 19 Feb 2021 21:14:59 GMT expires: - '-1' odata-version: @@ -1616,15 +1204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e56125d7-465c-4381-9708-777cca55ee25\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"ae2a9e13-872b-4746-bd8a-69ef4a123d0a\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/e56125d7-465c-4381-9708-777cca55ee25?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1632,7 +1220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:10 GMT + - Fri, 19 Feb 2021 21:15:01 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml index beb8d3a91c2..0e5ab24a35d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_delete.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"3fbd85f2-cc19-42ed-bb74-69206b8e4f59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.9961384Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.9961384Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '786' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:16 GMT + - Fri, 19 Feb 2021 21:14:25 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"3fbd85f2-cc19-42ed-bb74-69206b8e4f59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.9961384Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.9961384Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '786' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:17 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "North Europe", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -130,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '411' + - '414' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -145,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:19.8752374Z\",\"lastModified\":\"2021-01-22T02:46:19.8752374Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:29.3393383Z\",\"lastModified\":\"2021-02-19T21:14:29.3393383Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4289154f07d14b7cb078eb7915609494\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"30a891b4-90ef-4cd0-86fa-2f63dc9e3caa\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b3ded14-74b7-42c1-94fb-1030154d0df8?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1564' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:20 GMT + - Fri, 19 Feb 2021 21:14:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5b3ded14-74b7-42c1-94fb-1030154d0df8?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,121 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:46:23 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event create - Connection: - - keep-alive - ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --ips --tags - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:46:25 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event create - Connection: - - keep-alive - ParameterSetName: - - -a -n -g --streaming-protocol --encoding-type --ips --tags - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b3ded14-74b7-42c1-94fb-1030154d0df8?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"ef7a3566-bbfb-4b24-9da6-af8402a7a98e\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0c5a54a9-35a1-412c-b912-da0f9e1ee893\"\r\n + string: "{\r\n \"name\":\"5b3ded14-74b7-42c1-94fb-1030154d0df8\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"04fc061e-55bd-4844-993d-99441e2f426a\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/ef7a3566-bbfb-4b24-9da6-af8402a7a98e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b3ded14-74b7-42c1-94fb-1030154d0df8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -326,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:27 GMT + - Fri, 19 Feb 2021 21:14:32 GMT expires: - '-1' odata-version: @@ -367,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.3550179Z\",\"lastModified\":\"2021-02-19T21:14:29.5958257Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4289154f07d14b7cb078eb7915609494\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"30a891b4-90ef-4cd0-86fa-2f63dc9e3caa\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -383,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:27 GMT + - Fri, 19 Feb 2021 21:14:32 GMT expires: - '-1' odata-version: @@ -431,15 +325,15 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.3550179Z\",\"lastModified\":\"2021-02-19T21:14:29.5958257Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4289154f07d14b7cb078eb7915609494\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"30a891b4-90ef-4cd0-86fa-2f63dc9e3caa\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n }\r\n ]\r\n}" @@ -447,11 +341,11 @@ interactions: cache-control: - no-cache content-length: - - '1735' + - '1738' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:29 GMT + - Fri, 19 Feb 2021 21:14:34 GMT expires: - '-1' odata-version: @@ -494,20 +388,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"North - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"1c4e12cc-5a63-4f6d-9843-07e2831aae0b\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"3fbd85f2-cc19-42ed-bb74-69206b8e4f59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.9961384Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.9961384Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '786' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:30 GMT + - Fri, 19 Feb 2021 21:14:35 GMT expires: - '-1' odata-version: @@ -531,7 +425,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "North Europe", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000005_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -543,7 +437,7 @@ interactions: Connection: - keep-alive Content-Length: - - '411' + - '414' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -558,33 +452,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:32.7416247Z\",\"lastModified\":\"2021-01-22T02:46:32.7416247Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:38.2987692Z\",\"lastModified\":\"2021-02-19T21:14:38.2987692Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2b13778b2d38463d854a7a3f7035fe96\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"03ca8572-7c9b-46bd-b340-863da70b91e2\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6eb765b0-4da0-4ca2-b797-1299dbf7c357?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1564' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:32 GMT + - Fri, 19 Feb 2021 21:14:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/6eb765b0-4da0-4ca2-b797-1299dbf7c357?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -617,15 +511,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6eb765b0-4da0-4ca2-b797-1299dbf7c357?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"5719924a-792b-4c8c-80bb-1103f1ab8409\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"58ccf6d7-79e2-4d35-826c-c176bcf39b06\"\r\n + string: "{\r\n \"name\":\"6eb765b0-4da0-4ca2-b797-1299dbf7c357\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"75f44f74-1a0c-448c-9589-fe474eb98f37\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5719924a-792b-4c8c-80bb-1103f1ab8409?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6eb765b0-4da0-4ca2-b797-1299dbf7c357?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -633,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:35 GMT + - Fri, 19 Feb 2021 21:14:40 GMT expires: - '-1' odata-version: @@ -674,15 +568,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:32.7728134Z\",\"lastModified\":\"2021-01-22T02:46:32.9649589Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:38.3143564Z\",\"lastModified\":\"2021-02-19T21:14:38.5188018Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2b13778b2d38463d854a7a3f7035fe96\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"03ca8572-7c9b-46bd-b340-863da70b91e2\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -690,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:35 GMT + - Fri, 19 Feb 2021 21:14:41 GMT expires: - '-1' odata-version: @@ -738,28 +632,28 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.3550179Z\",\"lastModified\":\"2021-02-19T21:14:29.5958257Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4289154f07d14b7cb078eb7915609494\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"30a891b4-90ef-4cd0-86fa-2f63dc9e3caa\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:32.7728134Z\",\"lastModified\":\"2021-01-22T02:46:32.9649589Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68c36272bcfc4f94bc59f1861722e9ad\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:38.3143564Z\",\"lastModified\":\"2021-02-19T21:14:38.5188018Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"2b13778b2d38463d854a7a3f7035fe96\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"f12e1dd7-df52-4d6b-a54c-f4ead29decc1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"03ca8572-7c9b-46bd-b340-863da70b91e2\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n }\r\n ]\r\n}" @@ -767,11 +661,11 @@ interactions: cache-control: - no-cache content-length: - - '3443' + - '3449' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:37 GMT + - Fri, 19 Feb 2021 21:14:42 GMT expires: - '-1' odata-version: @@ -818,17 +712,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:46:39 GMT + - Fri, 19 Feb 2021 21:14:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 pragma: - no-cache server: @@ -859,15 +753,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"eded4d53-b0d4-4eb1-8605-6c4135702fe0\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"3cdaed85-afe0-434e-96f5-98dc56fe88a3\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/eded4d53-b0d4-4eb1-8605-6c4135702fe0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -875,7 +769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:42 GMT + - Fri, 19 Feb 2021 21:14:47 GMT expires: - '-1' odata-version: @@ -919,15 +813,15 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"North Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:19.8908627Z\",\"lastModified\":\"2021-01-22T02:46:25.8172456Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"597f1b920f9b4c739491aca9cb6b59a6\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.3550179Z\",\"lastModified\":\"2021-02-19T21:14:29.5958257Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"4289154f07d14b7cb078eb7915609494\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"e4a0ad0d-a8b7-4d43-b3fc-d0cff4580ccd\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"30a891b4-90ef-4cd0-86fa-2f63dc9e3caa\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n }\r\n ]\r\n}" @@ -935,11 +829,11 @@ interactions: cache-control: - no-cache content-length: - - '1735' + - '1738' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:44 GMT + - Fri, 19 Feb 2021 21:14:48 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml index 50a5f2b27ca..f5c142b95f0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_list.yaml @@ -1,57 +1,4 @@ interactions: -- request: - body: '{"location": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", - "type": "Primary"}]}, "identity": {"type": "None"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ams account create - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g --storage-account -l - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003?api-version=2020-05-01 - response: - body: - string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive - a response from ''Microsoft.Media'' within the specified time period."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '143' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:46:43 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": "westeurope", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}]}, "identity": {"type": "None"}}' @@ -80,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"52df155c-1f71-4736-8c50-601c2dc399dc\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.7306885Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.7306885Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:47 GMT + - Fri, 19 Feb 2021 21:14:25 GMT expires: - '-1' odata-version: @@ -134,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"52df155c-1f71-4736-8c50-601c2dc399dc\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.7306885Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.7306885Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:48 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -171,7 +118,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "West Europe", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -183,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '410' + - '413' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -198,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.3135102Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:29.9360269Z\",\"lastModified\":\"2021-02-19T21:14:29.9360269Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a8ce8e3e63074c149f539ed454167113\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f21d6161-5efb-4005-a866-cf8b7b5c3b29\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5255db91-a65c-4ca4-ad64-479439df6919?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:51 GMT + - Fri, 19 Feb 2021 21:14:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5255db91-a65c-4ca4-ad64-479439df6919?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -257,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5255db91-a65c-4ca4-ad64-479439df6919?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8d90824d-6eac-4141-ac6b-cac8740cf684\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"990b706c-795a-4a41-afe9-651a18562f84\"\r\n + string: "{\r\n \"name\":\"5255db91-a65c-4ca4-ad64-479439df6919\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"48fe1225-5dc8-4cfc-8555-ffe913f8b024\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8d90824d-6eac-4141-ac6b-cac8740cf684?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5255db91-a65c-4ca4-ad64-479439df6919?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -273,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:54 GMT + - Fri, 19 Feb 2021 21:14:34 GMT expires: - '-1' odata-version: @@ -314,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:30.0297789Z\",\"lastModified\":\"2021-02-19T21:14:31.766353Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a8ce8e3e63074c149f539ed454167113\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f21d6161-5efb-4005-a866-cf8b7b5c3b29\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -330,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:55 GMT + - Fri, 19 Feb 2021 21:14:34 GMT expires: - '-1' odata-version: @@ -378,15 +325,15 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:30.0297789Z\",\"lastModified\":\"2021-02-19T21:14:31.766353Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a8ce8e3e63074c149f539ed454167113\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f21d6161-5efb-4005-a866-cf8b7b5c3b29\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n }\r\n ]\r\n}" @@ -394,11 +341,11 @@ interactions: cache-control: - no-cache content-length: - - '1734' + - '1736' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:56 GMT + - Fri, 19 Feb 2021 21:14:36 GMT expires: - '-1' odata-version: @@ -441,20 +388,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - Europe\",\"properties\":{\r\n \"mediaServiceId\":\"f5c5cc27-1d5a-4545-8a0a-6eae35944878\",\"storageAccounts\":[\r\n + Europe\",\"properties\":{\r\n \"mediaServiceId\":\"52df155c-1f71-4736-8c50-601c2dc399dc\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.7306885Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.7306885Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:57 GMT + - Fri, 19 Feb 2021 21:14:38 GMT expires: - '-1' odata-version: @@ -478,7 +425,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "West Europe", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000005_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -490,7 +437,7 @@ interactions: Connection: - keep-alive Content-Length: - - '410' + - '413' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -505,33 +452,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:00.5515154Z\",\"lastModified\":\"2021-01-22T02:47:00.5515154Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:40.2104087Z\",\"lastModified\":\"2021-02-19T21:14:40.2104087Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00fd8dbabaed4089bd71bf22c8395484\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c5cded1e-f266-4b5e-8593-3ead21ffd1ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:00 GMT + - Fri, 19 Feb 2021 21:14:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005/operationlocations/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -564,15 +511,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"24978520-ef43-4d1e-a54a-1d7e4a837f16\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"9992b65d-8dd4-4c4a-b6da-6cb50d639373\"\r\n + string: "{\r\n \"name\":\"96c6ea57-e1b5-4e75-92ec-ae3b9c20f572\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"874f9bf4-554a-4ff2-9350-9bdaf0bc1396\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/24978520-ef43-4d1e-a54a-1d7e4a837f16?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -580,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:04 GMT + - Fri, 19 Feb 2021 21:14:43 GMT expires: - '-1' odata-version: @@ -621,15 +568,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:00.5670787Z\",\"lastModified\":\"2021-01-22T02:47:00.8547193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n + Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:40.2259169Z\",\"lastModified\":\"2021-02-19T21:14:40.4859455Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00fd8dbabaed4089bd71bf22c8395484\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c5cded1e-f266-4b5e-8593-3ead21ffd1ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -637,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:04 GMT + - Fri, 19 Feb 2021 21:14:43 GMT expires: - '-1' odata-version: @@ -683,30 +630,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveEvents?api-version=2020-05-01 response: body: - string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West + string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:51.3135102Z\",\"lastModified\":\"2021-01-22T02:46:51.6004933Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"74f9e204989c4e6cb03e0974f5771d25\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:40.2259169Z\",\"lastModified\":\"2021-02-19T21:14:40.4859455Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"00fd8dbabaed4089bd71bf22c8395484\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"0798123a-2ef7-4f59-b135-df71e5e92e04\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"c5cded1e-f266-4b5e-8593-3ead21ffd1ca\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n - \ }\r\n },{\r\n \"name\":\"le000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000005\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West + \ }\r\n },{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West Europe\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:00.5670787Z\",\"lastModified\":\"2021-01-22T02:47:00.8547193Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"cb0a43ab43fe4eda8de7359ca687edcf\",\"endpoints\":[\r\n + \ \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:30.0297789Z\",\"lastModified\":\"2021-02-19T21:14:31.766353Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a8ce8e3e63074c149f539ed454167113\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n - \ \"allow\":[\r\n {\r\n \"name\":\"le000005_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n + \ \"allow\":[\r\n {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"bb7ead6a-2faa-4fc2-9325-c8dafd20c6a8\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"f21d6161-5efb-4005-a866-cf8b7b5c3b29\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n \ ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n }\r\n ]\r\n}" @@ -714,11 +661,11 @@ interactions: cache-control: - no-cache content-length: - - '3441' + - '3446' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:06 GMT + - Fri, 19 Feb 2021 21:14:45 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml index c1fe7f6a8b6..8c77b7bbe0f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_reset.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"14ec0ac0-1aca-424f-83f6-d02b1b4979af\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"f3545f1d-06f7-4e04-9a16-b8e23a674af9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.5709453Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.5709453Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '781' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:34 GMT + - Fri, 19 Feb 2021 21:14:22 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"14ec0ac0-1aca-424f-83f6-d02b1b4979af\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"f3545f1d-06f7-4e04-9a16-b8e23a674af9\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.5709453Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.5709453Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '781' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:35 GMT + - Fri, 19 Feb 2021 21:14:22 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: body: '{"location": "East US", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": {"accessControl": {"ip": {"allow": - []}}}, "encoding": {"encodingType": "Basic"}, "transcriptions": [], "crossSiteAccessPolicies": + []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -130,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '383' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -145,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:37.8393609Z\",\"lastModified\":\"2021-01-22T02:46:37.8393609Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:24.6796224Z\",\"lastModified\":\"2021-02-19T21:14:24.6796224Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1f9f0eacdabe49398fed29e6edebc6c3\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8be51688-9e2a-40c2-aab4-4b8f4f0f08f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1546' + - '1549' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:38 GMT + - Fri, 19 Feb 2021 21:14:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6719edb9-caaa-4f1f-ba2e-e38ac22f6b06\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"310176b9-e9e0-4981-bb09-f48a7b7c56da\"\r\n + string: "{\r\n \"name\":\"f43eb0a0-3814-49b6-a36f-66a6e90d83c3\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b88a1f92-95d3-42f6-86cd-39a92ea261f7\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6719edb9-caaa-4f1f-ba2e-e38ac22f6b06?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:41 GMT + - Fri, 19 Feb 2021 21:14:27 GMT expires: - '-1' odata-version: @@ -261,16 +261,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:37.8549137Z\",\"lastModified\":\"2021-01-22T02:46:39.7150334Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d80c50e6938a4d5887408632e3bd7e54.channel.media.azure.net/28a0f90101304dc6babd35572416cd60/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:24.6952337Z\",\"lastModified\":\"2021-02-19T21:14:26.0781206Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1f9f0eacdabe49398fed29e6edebc6c3\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://87e47ff16b8c4976a56545954168113b.channel.media.azure.net/1f9f0eacdabe49398fed29e6edebc6c3/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8be51688-9e2a-40c2-aab4-4b8f4f0f08f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/14764c69-e963-4ccf-95ae-c6b2c1f64540/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/8be51688-9e2a-40c2-aab4-4b8f4f0f08f7/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1899' + - '1902' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:41 GMT + - Fri, 19 Feb 2021 21:14:27 GMT expires: - '-1' odata-version: @@ -329,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c593daf8-c0ff-428c-a3f9-e794c687bf20?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:46:42 GMT + - Fri, 19 Feb 2021 21:14:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/c593daf8-c0ff-428c-a3f9-e794c687bf20?api-version=2020-05-01 pragma: - no-cache server: @@ -370,15 +370,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c593daf8-c0ff-428c-a3f9-e794c687bf20?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"b1826578-1000-4c47-ac38-36b37cecfbaf\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"310176b9-e9e0-4981-bb09-f48a7b7c56da\"\r\n + string: "{\r\n \"name\":\"c593daf8-c0ff-428c-a3f9-e794c687bf20\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b88a1f92-95d3-42f6-86cd-39a92ea261f7\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/b1826578-1000-4c47-ac38-36b37cecfbaf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c593daf8-c0ff-428c-a3f9-e794c687bf20?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -386,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:45 GMT + - Fri, 19 Feb 2021 21:14:31 GMT expires: - '-1' odata-version: @@ -429,16 +429,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:37.8549137Z\",\"lastModified\":\"2021-01-22T02:46:44.9349189Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"28a0f90101304dc6babd35572416cd60\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d80c50e6938a4d5887408632e3bd7e54.channel.media.azure.net/28a0f90101304dc6babd35572416cd60/ingest.isml\"\r\n + US\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:24.6952337Z\",\"lastModified\":\"2021-02-19T21:14:30.8824945Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"1f9f0eacdabe49398fed29e6edebc6c3\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://87e47ff16b8c4976a56545954168113b.channel.media.azure.net/1f9f0eacdabe49398fed29e6edebc6c3/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"14764c69-e963-4ccf-95ae-c6b2c1f64540\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"8be51688-9e2a-40c2-aab4-4b8f4f0f08f7\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/14764c69-e963-4ccf-95ae-c6b2c1f64540/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-usea.channel.media.azure.net/8be51688-9e2a-40c2-aab4-4b8f4f0f08f7/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -446,11 +446,11 @@ interactions: cache-control: - no-cache content-length: - - '1899' + - '1902' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:45 GMT + - Fri, 19 Feb 2021 21:14:32 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml index 2dd15f52325..052979a674e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_show.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"3a28487a-5b46-40b6-b2b1-95bf14325709\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"2e894ff6-f908-4904-9dd2-1a676e227691\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:15 GMT + - Fri, 19 Feb 2021 21:14:22 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -82,7 +82,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US\",\"properties\":{\r\n \"mediaServiceId\":\"3a28487a-5b46-40b6-b2b1-95bf14325709\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"2e894ff6-f908-4904-9dd2-1a676e227691\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:15 GMT + - Fri, 19 Feb 2021 21:14:23 GMT expires: - '-1' odata-version: @@ -123,7 +123,7 @@ interactions: "accessToken": "0abf356884d74b4aacbd7b1ebd3da0f7"}, "preview": {"accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", "address": "0.0.0.0"}]}}, "previewLocator": "88888888-0000-0000-0000-000000000001"}, - "encoding": {"encodingType": "Basic"}, "transcriptions": [], "crossSiteAccessPolicies": + "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -181,19 +181,19 @@ interactions: \ \r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2657' + - '2662' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:17 GMT + - Fri, 19 Feb 2021 21:14:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -227,15 +227,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"38be4352-7dc8-478f-91c4-c98a065a1277\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3563b673-43f5-435f-8ffc-5b2456905d52\"\r\n + string: "{\r\n \"name\":\"99c0c462-d85e-4ae3-8e46-ac24263b9bd2\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"5734ed51-1089-4e2c-b13f-9825b42d1ca1\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/38be4352-7dc8-478f-91c4-c98a065a1277?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:20 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -285,7 +285,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:17.7200126Z\",\"lastModified\":\"2021-01-22T02:46:18.0111077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:24.2781998Z\",\"lastModified\":\"2021-02-19T21:14:24.5119352Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -296,7 +296,7 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -310,11 +310,11 @@ interactions: cache-control: - no-cache content-length: - - '2658' + - '2661' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:20 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -357,7 +357,7 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"West - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:17.7200126Z\",\"lastModified\":\"2021-01-22T02:46:18.0111077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"asd\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:24.2781998Z\",\"lastModified\":\"2021-02-19T21:14:24.5119352Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \"Default\",\"LowLatency\"\r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"RTMP\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_1.2.3.4\",\"address\":\"1.2.3.4\",\"subnetPrefixLength\":null\r\n @@ -368,7 +368,7 @@ interactions: \ \"ip\":{\r\n \"allow\":[\r\n {\r\n \"name\":\"le000004_1.1.1.1\",\"address\":\"1.1.1.1\",\"subnetPrefixLength\":null\r\n \ },{\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":null\r\n \ }\r\n ]\r\n }\r\n },\"endpoints\":[\r\n \r\n - \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -382,11 +382,11 @@ interactions: cache-control: - no-cache content-length: - - '2658' + - '2661' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:20 GMT + - Fri, 19 Feb 2021 21:14:27 GMT expires: - '-1' odata-version: @@ -439,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:46:21 GMT + - Fri, 19 Feb 2021 21:14:27 GMT expires: - '-1' pragma: @@ -480,17 +480,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:46:21 GMT + - Fri, 19 Feb 2021 21:14:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 pragma: - no-cache server: @@ -521,15 +521,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"afb47591-e6cb-44d3-9466-39e63fe36634\",\"status\":\"Succeeded\",\"error\":{\r\n + string: "{\r\n \"name\":\"a0d76407-bba0-4bee-abd5-2dd0d180fdee\",\"status\":\"Succeeded\",\"error\":{\r\n \ \"code\":\"None\",\"message\":null,\"target\":\"00000000-0000-0000-0000-000000000000\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/afb47591-e6cb-44d3-9466-39e63fe36634?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -537,7 +537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:23 GMT + - Fri, 19 Feb 2021 21:14:30 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml index bf4c8011ca4..de857b3fae3 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e470f47e-27d3-46ad-91c0-4201a5ed4864\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"29a5725f-a35e-4186-96b3-24ea7ae1fb59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.5509462Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.5509462Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:18 GMT + - Fri, 19 Feb 2021 21:14:24 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"e470f47e-27d3-46ad-91c0-4201a5ed4864\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"29a5725f-a35e-4186-96b3-24ea7ae1fb59\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:20.5509462Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:20.5509462Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:19 GMT + - Fri, 19 Feb 2021 21:14:25 GMT expires: - '-1' odata-version: @@ -119,7 +119,7 @@ interactions: {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}, "accessToken": "0abf356884d74b4aacbd7b1ebd3da0f7"}, "preview": {"accessControl": {"ip": {"allow": - []}}}, "encoding": {"encodingType": "Basic"}, "transcriptions": [], "crossSiteAccessPolicies": + []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -131,7 +131,7 @@ interactions: Connection: - keep-alive Content-Length: - - '461' + - '464' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -146,33 +146,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:22.6273175Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:14:29.7756486Z\",\"lastModified\":\"2021-02-19T21:14:29.7756486Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"499bbf62-21fe-46fa-a772-d3bdb143cb48\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:22 GMT + - Fri, 19 Feb 2021 21:14:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -205,15 +205,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"3ad6a5b8-ce27-4e22-a153-5259c0b06764\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"2fbf50d7-a6e6-4933-bee8-d862a863a8a7\"\r\n + string: "{\r\n \"name\":\"d853b625-28bb-4dd4-b430-9cd19209aa0d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7d9cd80b-0ccf-4981-b9d8-87111c50d970\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/3ad6a5b8-ce27-4e22-a153-5259c0b06764?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -221,7 +221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:26 GMT + - Fri, 19 Feb 2021 21:14:33 GMT expires: - '-1' odata-version: @@ -262,15 +262,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:22.8370077Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.8068421Z\",\"lastModified\":\"2021-02-19T21:14:30.1187804Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"499bbf62-21fe-46fa-a772-d3bdb143cb48\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:26 GMT + - Fri, 19 Feb 2021 21:14:33 GMT expires: - '-1' odata-version: @@ -329,17 +329,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:46:28 GMT + - Fri, 19 Feb 2021 21:14:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 pragma: - no-cache server: @@ -370,15 +370,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6e38fcbf-158d-49de-a1b9-c59cc5c98b59\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"2fbf50d7-a6e6-4933-bee8-d862a863a8a7\"\r\n + string: "{\r\n \"name\":\"5b841136-f6f5-4272-939e-933ecba32773\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"7d9cd80b-0ccf-4981-b9d8-87111c50d970\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6e38fcbf-158d-49de-a1b9-c59cc5c98b59?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -386,7 +386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:30 GMT + - Fri, 19 Feb 2021 21:14:39 GMT expires: - '-1' odata-version: @@ -429,16 +429,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:46:22.6273175Z\",\"lastModified\":\"2021-01-22T02:46:30.9773826Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"StandBy\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:14:29.8068421Z\",\"lastModified\":\"2021-02-19T21:14:38.5013466Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"0abf356884d74b4aacbd7b1ebd3da0f7\",\"endpoints\":[\r\n \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://77abca2f5edb4107a05e8a97d98c0608.channel.media.azure.net/0abf356884d74b4aacbd7b1ebd3da0f7/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"499bbf62-21fe-46fa-a772-d3bdb143cb48\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/a5ed3f28-b4b8-4a58-af8c-3ec05c87f9f1/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/499bbf62-21fe-46fa-a772-d3bdb143cb48/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -446,11 +446,11 @@ interactions: cache-control: - no-cache content-length: - - '1916' + - '1919' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:46:31 GMT + - Fri, 19 Feb 2021 21:14:40 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml index d38bc3a1822..ae086161a85 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_start.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"21a3c13d-d75f-4a12-9273-490acdf6d3e9\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"bafcf8e7-34fb-42a9-a8d8-384c1268a07f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:24.9728171Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:24.9728171Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:38 GMT + - Fri, 19 Feb 2021 21:15:32 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"South - India\",\"properties\":{\r\n \"mediaServiceId\":\"21a3c13d-d75f-4a12-9273-490acdf6d3e9\",\"storageAccounts\":[\r\n + India\",\"properties\":{\r\n \"mediaServiceId\":\"bafcf8e7-34fb-42a9-a8d8-384c1268a07f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:24.9728171Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:24.9728171Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '785' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:32 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "South India", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -130,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '410' + - '413' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -145,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:43.8001133Z\",\"lastModified\":\"2021-01-22T02:47:43.8001133Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:37.2693342Z\",\"lastModified\":\"2021-02-19T21:15:37.2693342Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"66214f1a37b9411abaf93bf19c5565ab\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b36e4998-492b-4900-939e-58fa06d493ff\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/46deb0ac-7b43-49ef-a173-5c92a5642f1b?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1563' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:44 GMT + - Fri, 19 Feb 2021 21:15:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/46deb0ac-7b43-49ef-a173-5c92a5642f1b?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/46deb0ac-7b43-49ef-a173-5c92a5642f1b?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"06e1e9ee-d782-4d66-a444-5bfa295fda6e\"\r\n + string: "{\r\n \"name\":\"46deb0ac-7b43-49ef-a173-5c92a5642f1b\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b67f4f1a-ead3-4571-93c5-d3851360902f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5ebd48b3-9d80-4821-8b4f-6e1de0ad64b8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/46deb0ac-7b43-49ef-a173-5c92a5642f1b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:46 GMT + - Fri, 19 Feb 2021 21:15:41 GMT expires: - '-1' odata-version: @@ -261,15 +261,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:43.8157589Z\",\"lastModified\":\"2021-01-22T02:47:44.1234645Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:37.284979Z\",\"lastModified\":\"2021-02-19T21:15:37.6939641Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"66214f1a37b9411abaf93bf19c5565ab\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b36e4998-492b-4900-939e-58fa06d493ff\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -277,11 +277,11 @@ interactions: cache-control: - no-cache content-length: - - '1562' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:47 GMT + - Fri, 19 Feb 2021 21:15:41 GMT expires: - '-1' odata-version: @@ -328,17 +328,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/dedafee7-d66f-494c-b14b-17a422f05b04?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:47:50 GMT + - Fri, 19 Feb 2021 21:15:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/dedafee7-d66f-494c-b14b-17a422f05b04?api-version=2020-05-01 pragma: - no-cache server: @@ -369,15 +369,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/dedafee7-d66f-494c-b14b-17a422f05b04?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"6c77f84a-8078-4171-b4c0-25f98dc89fb1\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"06e1e9ee-d782-4d66-a444-5bfa295fda6e\"\r\n + string: "{\r\n \"name\":\"dedafee7-d66f-494c-b14b-17a422f05b04\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b67f4f1a-ead3-4571-93c5-d3851360902f\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/6c77f84a-8078-4171-b4c0-25f98dc89fb1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/dedafee7-d66f-494c-b14b-17a422f05b04?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:53 GMT + - Fri, 19 Feb 2021 21:15:47 GMT expires: - '-1' odata-version: @@ -428,16 +428,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"South - India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:43.8157589Z\",\"lastModified\":\"2021-01-22T02:47:52.5579676Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"a4b5e630f4024da5bc10a4fa0fa33fef\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://77abca2f5edb4107a05e8a97d98c0608.channel.media.azure.net/a4b5e630f4024da5bc10a4fa0fa33fef/ingest.isml\"\r\n + India\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:37.284979Z\",\"lastModified\":\"2021-02-19T21:15:46.8833851Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"66214f1a37b9411abaf93bf19c5565ab\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://cc4f1a200591412d831035c43f105043.channel.media.azure.net/66214f1a37b9411abaf93bf19c5565ab/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7589553f-fce0-4d29-b06f-7cceab774408\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b36e4998-492b-4900-939e-58fa06d493ff\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/7589553f-fce0-4d29-b06f-7cceab774408/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-inso.channel.media.azure.net/b36e4998-492b-4900-939e-58fa06d493ff/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -445,11 +445,11 @@ interactions: cache-control: - no-cache content-length: - - '1916' + - '1918' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:54 GMT + - Fri, 19 Feb 2021 21:15:48 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml index 367d9747156..9108e5774ef 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"6091c784-0682-45fc-adeb-0bf9bb5ddfe2\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"73e8ad52-9fa7-4643-9b52-6926282de93d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:12.6669115Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:12.6669115Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '786' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:30 GMT + - Fri, 19 Feb 2021 21:15:18 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Brazil - South\",\"properties\":{\r\n \"mediaServiceId\":\"6091c784-0682-45fc-adeb-0bf9bb5ddfe2\",\"storageAccounts\":[\r\n + South\",\"properties\":{\r\n \"mediaServiceId\":\"73e8ad52-9fa7-4643-9b52-6926282de93d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:12.6669115Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:12.6669115Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '786' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:32 GMT + - Fri, 19 Feb 2021 21:15:20 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "Brazil South", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -130,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '411' + - '414' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -145,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:35.6183775Z\",\"lastModified\":\"2021-01-22T02:47:35.6183775Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:23.2645579Z\",\"lastModified\":\"2021-02-19T21:15:23.2645579Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e6da0d91c70d48b0a07839f0c190a865\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5c5e21e0-b303-45e6-bc0f-72c330b6c7fe\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1564' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:36 GMT + - Fri, 19 Feb 2021 21:15:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"0bfd2569-ba57-4a7e-ae70-d61717f45b66\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f5f42414-e094-4fd8-ad8a-bbafae10d443\"\r\n + string: "{\r\n \"name\":\"718ad8e0-4a6e-4a98-a33e-1aaeccb486ea\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b2f9b749-1833-4f9f-b9a5-c464d4dfc647\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/0bfd2569-ba57-4a7e-ae70-d61717f45b66?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:27 GMT expires: - '-1' odata-version: @@ -261,16 +261,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:35.6496144Z\",\"lastModified\":\"2021-01-22T02:47:38.3746426Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://f98dd41dd6014aab88025caf188def39.channel.media.azure.net/f6569c3c21114300a0ea44abaab9eef4/ingest.isml\"\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:23.295929Z\",\"lastModified\":\"2021-02-19T21:15:25.6883916Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e6da0d91c70d48b0a07839f0c190a865\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://a38dcdeb35524e13b98c434ffd8b4bd4.channel.media.azure.net/e6da0d91c70d48b0a07839f0c190a865/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5c5e21e0-b303-45e6-bc0f-72c330b6c7fe\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/7a1a7597-972e-4100-ae0d-fe8c06663e10/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-brso.channel.media.azure.net/5c5e21e0-b303-45e6-bc0f-72c330b6c7fe/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1917' + - '1919' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:27 GMT expires: - '-1' odata-version: @@ -331,17 +331,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:47:41 GMT + - Fri, 19 Feb 2021 21:15:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 pragma: - no-cache server: @@ -372,15 +372,121 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"c8a16812-1d01-4b41-aaf1-659799680d33\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b2f9b749-1833-4f9f-b9a5-c464d4dfc647\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:15:32 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\":\"c8a16812-1d01-4b41-aaf1-659799680d33\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b2f9b749-1833-4f9f-b9a5-c464d4dfc647\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:15:34 GMT + expires: + - '-1' + odata-version: + - '4.0' + 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: + - ams live-event stop + Connection: + - keep-alive + ParameterSetName: + - -a -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-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"20e24474-59b5-450b-8d3f-835849c2594c\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f5f42414-e094-4fd8-ad8a-bbafae10d443\"\r\n + string: "{\r\n \"name\":\"c8a16812-1d01-4b41-aaf1-659799680d33\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b2f9b749-1833-4f9f-b9a5-c464d4dfc647\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/20e24474-59b5-450b-8d3f-835849c2594c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -388,7 +494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:44 GMT + - Fri, 19 Feb 2021 21:15:36 GMT expires: - '-1' odata-version: @@ -431,15 +537,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Brazil - South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:35.6496144Z\",\"lastModified\":\"2021-01-22T02:47:44.9765026Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"f6569c3c21114300a0ea44abaab9eef4\",\"endpoints\":[\r\n + South\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:23.295929Z\",\"lastModified\":\"2021-02-19T21:15:36.3833256Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"e6da0d91c70d48b0a07839f0c190a865\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"7a1a7597-972e-4100-ae0d-fe8c06663e10\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"5c5e21e0-b303-45e6-bc0f-72c330b6c7fe\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -447,11 +553,11 @@ interactions: cache-control: - no-cache content-length: - - '1563' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:45 GMT + - Fri, 19 Feb 2021 21:15:37 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml index ac1b920eb93..ed5d0f68876 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_stop_and_remove_outputs.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"5fc9b0b0-765d-4f1b-aa9d-a437d408a5ab\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"cecbc5a3-f09c-4833-8e94-d6b4200b2343\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:08.1738347Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:08.1738347Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '784' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:32 GMT + - Fri, 19 Feb 2021 21:15:10 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Japan - East\",\"properties\":{\r\n \"mediaServiceId\":\"5fc9b0b0-765d-4f1b-aa9d-a437d408a5ab\",\"storageAccounts\":[\r\n + East\",\"properties\":{\r\n \"mediaServiceId\":\"cecbc5a3-f09c-4833-8e94-d6b4200b2343\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:15:08.1738347Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:15:08.1738347Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '784' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:33 GMT + - Fri, 19 Feb 2021 21:15:11 GMT expires: - '-1' odata-version: @@ -118,7 +118,7 @@ interactions: body: '{"tags": {"key": "value"}, "location": "Japan East", "properties": {"input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_0.0.0.0", "address": "0.0.0.0", "subnetPrefixLength": 0}]}}}, "preview": - {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Basic"}, + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: @@ -130,7 +130,7 @@ interactions: Connection: - keep-alive Content-Length: - - '409' + - '412' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -145,33 +145,33 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:47:36.0797774Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:14.8687078Z\",\"lastModified\":\"2021-02-19T21:15:14.8687078Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c6f2469b10894205b94d3994ddb049f5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b570edb1-df81-47a1-8d79-96a17b8b05af\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/69dace06-c2a2-4c57-9392-beb1077d709a?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1562' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:36 GMT + - Fri, 19 Feb 2021 21:15:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/69dace06-c2a2-4c57-9392-beb1077d709a?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/69dace06-c2a2-4c57-9392-beb1077d709a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"9d3dd247-3fbd-42a1-870a-2c699460c356\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n + string: "{\r\n \"name\":\"69dace06-c2a2-4c57-9392-beb1077d709a\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"42ef71ee-f289-4ca8-8f78-009c1fadca95\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/9d3dd247-3fbd-42a1-870a-2c699460c356?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/69dace06-c2a2-4c57-9392-beb1077d709a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:17 GMT expires: - '-1' odata-version: @@ -261,16 +261,16 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:47:38.344416Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n - \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://d74ee1f1c3a54e4dac895adf3e4cf89e.channel.media.azure.net/68f35dde7c0241cca7e3dffd1f9b5130/ingest.isml\"\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:14.8999567Z\",\"lastModified\":\"2021-02-19T21:15:17.4867321Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c6f2469b10894205b94d3994ddb049f5\",\"endpoints\":[\r\n + \ {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"http://2aa977334c3f44c6949c3d58aeddf1ad.channel.media.azure.net/c6f2469b10894205b94d3994ddb049f5/ingest.isml\"\r\n \ }\r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b570edb1-df81-47a1-8d79-96a17b8b05af\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n - \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/568f8ae3-f5d9-459e-8773-2f740577ff83/preview.ism/manifest\"\r\n - \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ }\r\n },\"endpoints\":[\r\n {\r\n \"protocol\":\"FragmentedMP4\",\"url\":\"https://le000004-ams000003.preview-jpea.channel.media.azure.net/b570edb1-df81-47a1-8d79-96a17b8b05af/preview.ism/manifest\"\r\n + \ }\r\n ]\r\n },\"encoding\":{\r\n \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -278,11 +278,11 @@ interactions: cache-control: - no-cache content-length: - - '1914' + - '1918' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:17 GMT expires: - '-1' odata-version: @@ -329,7 +329,7 @@ interactions: response: body: string: "{\r\n \"name\":\"asset000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/assets/asset000005\",\"type\":\"Microsoft.Media/mediaservices/assets\",\"properties\":{\r\n - \ \"assetId\":\"1d3c2d9f-e523-49e4-87e4-94e61e24b15f\",\"created\":\"2021-01-22T02:47:41.713Z\",\"lastModified\":\"2021-01-22T02:47:41.713Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n + \ \"assetId\":\"ecba218c-3529-4b4b-8405-5a13d0e9c1d4\",\"created\":\"2021-02-19T21:15:20.563Z\",\"lastModified\":\"2021-02-19T21:15:20.563Z\",\"storageAccountName\":\"clitest000002\",\"storageEncryptionFormat\":\"None\"\r\n \ }\r\n}" headers: cache-control: @@ -339,7 +339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:41 GMT + - Fri, 19 Feb 2021 21:15:20 GMT expires: - '-1' odata-version: @@ -385,11 +385,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:43.5441054Z\",\"lastModified\":\"2021-01-22T02:47:43.5441054Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:22.5704868Z\",\"lastModified\":\"2021-02-19T21:15:22.5704868Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d514f4a2-6a17-41fc-b6de-8091e05ac112?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -397,11 +397,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:43 GMT + - Fri, 19 Feb 2021 21:15:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006/operationlocations/d514f4a2-6a17-41fc-b6de-8091e05ac112?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -434,15 +434,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d514f4a2-6a17-41fc-b6de-8091e05ac112?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"e2434d31-33df-44f9-971e-5429fb9bcdd7\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n + string: "{\r\n \"name\":\"d514f4a2-6a17-41fc-b6de-8091e05ac112\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"42ef71ee-f289-4ca8-8f78-009c1fadca95\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/e2434d31-33df-44f9-971e-5429fb9bcdd7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/d514f4a2-6a17-41fc-b6de-8091e05ac112?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -450,7 +450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:46 GMT + - Fri, 19 Feb 2021 21:15:25 GMT expires: - '-1' odata-version: @@ -491,17 +491,17 @@ interactions: response: body: string: "{\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:44.1553837Z\",\"lastModified\":\"2021-01-22T02:47:44.6689668Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:23.211122Z\",\"lastModified\":\"2021-02-19T21:15:23.6964376Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '648' + - '647' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:47 GMT + - Fri, 19 Feb 2021 21:15:25 GMT expires: - '-1' odata-version: @@ -549,11 +549,11 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:49.7122474Z\",\"lastModified\":\"2021-01-22T02:47:49.7122474Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Creating\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:28.6116607Z\",\"lastModified\":\"2021-02-19T21:15:28.6116607Z\",\"hls\":null\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1854a425-5c98-491c-9ad0-488b66bdb453?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -561,11 +561,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:49 GMT + - Fri, 19 Feb 2021 21:15:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007/operationlocations/1854a425-5c98-491c-9ad0-488b66bdb453?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -598,15 +598,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1854a425-5c98-491c-9ad0-488b66bdb453?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"f8587dfe-6d87-4762-8d63-df93e3b5aa87\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n + string: "{\r\n \"name\":\"1854a425-5c98-491c-9ad0-488b66bdb453\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"42ef71ee-f289-4ca8-8f78-009c1fadca95\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/f8587dfe-6d87-4762-8d63-df93e3b5aa87?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveoutputoperations/1854a425-5c98-491c-9ad0-488b66bdb453?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -614,7 +614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:53 GMT + - Fri, 19 Feb 2021 21:15:31 GMT expires: - '-1' odata-version: @@ -655,17 +655,17 @@ interactions: response: body: string: "{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:50.307372Z\",\"lastModified\":\"2021-01-22T02:47:50.7091373Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:29.3005837Z\",\"lastModified\":\"2021-02-19T21:15:29.7082818Z\",\"hls\":null\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '647' + - '648' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:53 GMT + - Fri, 19 Feb 2021 21:15:31 GMT expires: - '-1' odata-version: @@ -708,9 +708,9 @@ interactions: response: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"lo1000006\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo1000006\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:44.1553837Z\",\"lastModified\":\"2021-01-22T02:47:44.6689668Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:23.211122Z\",\"lastModified\":\"2021-02-19T21:15:23.6964376Z\",\"hls\":null\r\n \ }\r\n },{\r\n \"name\":\"lo2000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/liveoutputs/lo2000007\",\"type\":\"Microsoft.Media/mediaservices/liveevents/liveoutputs\",\"properties\":{\r\n - \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:50.307372Z\",\"lastModified\":\"2021-01-22T02:47:50.7091373Z\",\"hls\":null\r\n + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:29.3005837Z\",\"lastModified\":\"2021-02-19T21:15:29.7082818Z\",\"hls\":null\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -720,7 +720,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:55 GMT + - Fri, 19 Feb 2021 21:15:34 GMT expires: - '-1' odata-version: @@ -769,17 +769,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 02:47:56 GMT + - Fri, 19 Feb 2021 21:15:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 pragma: - no-cache server: @@ -789,7 +789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -810,68 +810,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\":\"fa359b0e-1b19-4004-a385-810da0ed1cf9\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n - \ }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '172' - content-type: - - application/json; odata.metadata=minimal - date: - - Fri, 22 Jan 2021 02:48:00 GMT - expires: - - '-1' - odata-version: - - '4.0' - 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: - - ams live-event stop - Connection: - - keep-alive - ParameterSetName: - - -a -n -g --remove-outputs-on-stop - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"fa359b0e-1b19-4004-a385-810da0ed1cf9\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"3b1fc6b8-af8e-49c8-a874-4eab44956d30\"\r\n + string: "{\r\n \"name\":\"70522e9a-c5df-4a62-bb0e-a5eb207debea\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"42ef71ee-f289-4ca8-8f78-009c1fadca95\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/fa359b0e-1b19-4004-a385-810da0ed1cf9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -879,7 +826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:48:02 GMT + - Fri, 19 Feb 2021 21:15:37 GMT expires: - '-1' odata-version: @@ -922,15 +869,15 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"Japan - East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.0797774Z\",\"lastModified\":\"2021-01-22T02:48:02.2014537Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"68f35dde7c0241cca7e3dffd1f9b5130\",\"endpoints\":[\r\n + East\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:14.8999567Z\",\"lastModified\":\"2021-02-19T21:15:38.2431728Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"c6f2469b10894205b94d3994ddb049f5\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"568f8ae3-f5d9-459e-8773-2f740577ff83\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"b570edb1-df81-47a1-8d79-96a17b8b05af\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n - \ \"encodingType\":\"Basic\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n + \ \"encodingType\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n \ }\r\n}" @@ -938,11 +885,11 @@ interactions: cache-control: - no-cache content-length: - - '1561' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:48:02 GMT + - Fri, 19 Feb 2021 21:15:38 GMT expires: - '-1' odata-version: @@ -993,7 +940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:48:03 GMT + - Fri, 19 Feb 2021 21:15:39 GMT expires: - '-1' odata-version: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml index 05102134558..8ccd3c1db9c 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_update.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5a9c59e6-833c-44b4-9089-d25a612959a4\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"d81239be-8e37-46fb-a2d9-096acef1ee93\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:53.6593942Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:53.6593942Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '783' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:31 GMT + - Fri, 19 Feb 2021 21:14:57 GMT expires: - '-1' odata-version: @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5a9c59e6-833c-44b4-9089-d25a612959a4\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"d81239be-8e37-46fb-a2d9-096acef1ee93\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-19T21:14:53.6593942Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-19T21:14:53.6593942Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '783' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:32 GMT + - Fri, 19 Feb 2021 21:14:59 GMT expires: - '-1' odata-version: @@ -145,12 +145,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.5233447Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"InProgress\",\"created\":\"2021-02-19T21:15:02.0911538Z\",\"lastModified\":\"2021-02-19T21:15:02.0911538Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7eef0b6e91324c639fe2ca79c84e10c1\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"2a30f630-617b-4d1d-bf00-a0de93910d62\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -159,7 +159,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5e062132-1f93-4971-8043-30bfa7a26863?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -167,11 +167,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:36 GMT + - Fri, 19 Feb 2021 21:15:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004/operationlocations/5e062132-1f93-4971-8043-30bfa7a26863?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -204,15 +204,15 @@ interactions: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5e062132-1f93-4971-8043-30bfa7a26863?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"8a0aeac6-d400-4565-87a1-f5f7a4162b96\",\"status\":\"Succeeded\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"f6fe71d0-a5c8-4465-ac50-c948553071e7\"\r\n + string: "{\r\n \"name\":\"5e062132-1f93-4971-8043-30bfa7a26863\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"6f20f22c-baef-4c0e-88fd-81cba3fd2819\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/8a0aeac6-d400-4565-87a1-f5f7a4162b96?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveeventoperations/5e062132-1f93-4971-8043-30bfa7a26863?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:39 GMT + - Fri, 19 Feb 2021 21:15:05 GMT expires: - '-1' odata-version: @@ -261,12 +261,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.7845229Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:02.1223489Z\",\"lastModified\":\"2021-02-19T21:15:02.3820857Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7eef0b6e91324c639fe2ca79c84e10c1\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"2a30f630-617b-4d1d-bf00-a0de93910d62\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -281,7 +281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:40 GMT + - Fri, 19 Feb 2021 21:15:06 GMT expires: - '-1' odata-version: @@ -325,12 +325,12 @@ interactions: response: body: string: "{\r\n \"name\":\"le000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/liveevents/le000004\",\"type\":\"Microsoft.Media/mediaservices/liveevents\",\"location\":\"East - Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-22T02:47:36.5233447Z\",\"lastModified\":\"2021-01-22T02:47:36.7845229Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n - \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"839c42286fd2430d86fcc5bbb642a08b\",\"endpoints\":[\r\n + Asia\",\"tags\":{\r\n \r\n },\"properties\":{\r\n \"description\":\"\",\"resourceState\":\"Stopped\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-02-19T21:15:02.1223489Z\",\"lastModified\":\"2021-02-19T21:15:02.3820857Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7eef0b6e91324c639fe2ca79c84e10c1\",\"endpoints\":[\r\n \ \r\n ],\"accessControl\":{\r\n \"ip\":{\r\n \"allow\":[\r\n \ {\r\n \"name\":\"le000004_0.0.0.0\",\"address\":\"0.0.0.0\",\"subnetPrefixLength\":0\r\n \ }\r\n ]\r\n }\r\n }\r\n },\"preview\":{\r\n - \ \"previewLocator\":\"6f328360-46fe-4ba9-a673-29f2e3c74378\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n + \ \"previewLocator\":\"2a30f630-617b-4d1d-bf00-a0de93910d62\",\"streamingPolicyName\":\"Predefined_ClearStreamingOnly\",\"alternativeMediaId\":null,\"accessControl\":{\r\n \ \"ip\":{\r\n \"allow\":[\r\n \r\n ]\r\n \ }\r\n },\"endpoints\":[\r\n \r\n ]\r\n },\"encoding\":{\r\n \ \"encodingType\":\"None\",\"presetName\":null,\"stretchMode\":null,\"keyFrameInterval\":null\r\n @@ -345,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 22 Jan 2021 02:47:41 GMT + - Fri, 19 Feb 2021 21:15:07 GMT expires: - '-1' odata-version: @@ -370,10 +370,10 @@ interactions: "asd", "input": {"streamingProtocol": "FragmentedMP4", "accessControl": {"ip": {"allow": [{"name": "le000004_1.2.3.4", "address": "1.2.3.4"}, {"name": "le000004_5.6.7.8", "address": "5.6.7.8"}, {"name": "le000004_9.10.11.12", "address": "9.10.11.12"}]}}, - "keyFrameIntervalDuration": "PT2S", "accessToken": "839c42286fd2430d86fcc5bbb642a08b", + "keyFrameIntervalDuration": "PT2S", "accessToken": "7eef0b6e91324c639fe2ca79c84e10c1", "endpoints": []}, "preview": {"endpoints": [], "accessControl": {"ip": {"allow": [{"name": "le000004_1.1.1.1", "address": "1.1.1.1"}, {"name": "le000004_0.0.0.0", - "address": "0.0.0.0"}]}}, "previewLocator": "6f328360-46fe-4ba9-a673-29f2e3c74378", + "address": "0.0.0.0"}]}}, "previewLocator": "2a30f630-617b-4d1d-bf00-a0de93910d62", "streamingPolicyName": "Predefined_ClearStreamingOnly"}, "encoding": {"encodingType": "None"}, "transcriptions": [], "crossSiteAccessPolicies": {"clientAccessPolicy": "\r\n\r\n \r\n \r\n Date: Fri, 19 Feb 2021 14:23:01 -0800 Subject: [PATCH 24/30] updated parameter name --- src/azure-cli/azure/cli/command_modules/ams/_params.py | 4 ++-- .../azure/cli/command_modules/ams/operations/encryption.py | 6 +++--- .../tests/latest/test_ams_account_encryption_scenarios.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 027a6849829..72a1801be08 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -102,7 +102,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account encryption') as c: c.argument('account_name', account_name_arg_type) - c.argument('key_source', help='The encryption key source (provider). Allowed values: SystemKey, CustomerKey.') + c.argument('key_type', help='The encryption key source (provider). Allowed values: SystemKey, CustomerKey.', required=True) c.argument('key_identifier', help='The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).') c.argument('current_key_identifier', help='The current key used to encrypt the Media Services account, including the key version.') @@ -370,7 +370,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('cross_domain_policy', arg_group='Cross Site Access Policies', help='Filepath to the crossdomain.xml used by Microsoft Silverlight and Adobe Flash. Use @{file} to load from a file.') c.argument('stream_options', nargs='+', arg_type=get_enum_type(StreamOptionsFlag), help='The options to use for the LiveEvent. This value is specified at creation time and cannot be updated.') c.argument('transcription_lang', help='Live transcription language for the live event. Allowed values: {} See https://go.microsoft.com/fwlink/?linkid=2133742 for more information about the live transcription feature.'.format(", ".join(get_allowed_transcription_languages()))) - c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state') + c.argument('use_static_hostname', help='Specifies whether a static hostname would be assigned to the live event preview and ingest endpoints. This value can only be updated if the live event is in Standby state. If hostname_prefix is not specified, the live event name will be used as the hostname prefix.') c.argument('hostname_prefix', help='When useStaticHostname is set to true, hostname_prefix specifies the first part of the hostname assigned to the live event preview and ingest endpoints. The final hostname would be a combination of this prefix, the media service account name and a short code for the Azure Media Services data center.') c.argument('remove_outputs_on_stop', action='store_true', help='Remove live outputs on stop.') diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index 45a5cda8528..ad0628f2c07 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -16,16 +16,16 @@ def get_encryption(client, resource_group_name, account_name): return account_info.encryption -def set_encryption(client, resource_group_name, account_name, key_source=None, +def set_encryption(client, resource_group_name, account_name, key_type=None, current_key_identifier=None, key_identifier=None): try: account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) - if key_source == 'CustomerKey': + if key_type == 'CustomerKey': key_vault_props = KeyVaultProperties(key_identifier=key_identifier, current_key_identifier=current_key_identifier) else: key_vault_props = None - encryption = AccountEncryption(type=key_source, key_vault_properties=key_vault_props) + encryption = AccountEncryption(type=key_type, key_vault_properties=key_vault_props) media_service = MediaService(location=account_info.location, identity=account_info.identity, storage_accounts=account_info.storage_accounts, encryption=encryption) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py index 89035b3b27d..ec106cd5e48 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -36,7 +36,7 @@ def test_ams_encryption_set_show(self, resource_group, storage_account_for_creat self.cmd('keyvault set-policy --object-id {principalId} --name {keyVault} --key-permissions {identityPermissions}') - self.cmd('az ams account encryption set -a {amsname} -g {rg} --key-source {keySource} --key-identifier {keyVaultId}', checks=[ + self.cmd('az ams account encryption set -a {amsname} -g {rg} --key-type {keySource} --key-identifier {keyVaultId}', checks=[ self.check('name', '{amsname}'), ]) From cdc5ad415fbee9e8d2bcfcb9b7e8284d9d79e678 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 22 Feb 2021 17:59:16 -0800 Subject: [PATCH 25/30] changes based off PR comments' --- .../azure/cli/command_modules/ams/_params.py | 6 +- .../command_modules/ams/operations/account.py | 8 +- .../cli/command_modules/ams/operations/mru.py | 5 +- .../recordings/test_ams_check_name.yaml | 32 +++---- .../recordings/test_ams_create_show.yaml | 63 ++++++++------ .../test_ams_encryption_set_show.yaml | 86 ++++++++++--------- .../test_ams_storage_add_remove.yaml | 70 ++++++++------- .../test_ams_sync_storage_keys.yaml | 16 ++-- .../test_ams_account_encryption_scenarios.py | 2 +- .../latest/test_ams_account_scenarios.py | 6 +- src/azure-cli/setup.py | 2 +- 11 files changed, 159 insertions(+), 137 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 72a1801be08..847e17f4c9d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -60,13 +60,13 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account') as c: c.argument('location', arg_type=get_location_type(self.cli_ctx), - validator=get_default_location_from_resource_group, required=True) + validator=get_default_location_from_resource_group, required=False) c.argument('tags', arg_type=tags_type) with self.argument_context('ams account create') as c: c.argument('storage_account', storage_account_arg_type, help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.') - c.argument('managed_identity', help='Set this flag to enable managed identity on the account.') + c.argument('identity_system_assigned', help='Set this flag to enable managed identity on the account.', action='store_true') with self.argument_context('ams account check-name') as c: c.argument('account_name', options_list=['--name', '-n'], id_part=None, @@ -87,7 +87,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('id', required=True) with self.argument_context('ams account storage set-authentication') as c: - c.argument('storage_auth', help='Allowed values: {}'.format(", ".join(get_storage_authentication_allowed_values_list()))) + c.argument('storage_auth', arg_type=get_enum_type(get_storage_authentication_allowed_values_list()), help='The type of authentication for the storage account associated with the media services account.') with self.argument_context('ams account sp') as c: c.argument('account_name', account_name_arg_type) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index d64b104ce5a..e0206bd93db 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -18,11 +18,11 @@ def list_mediaservices(client, resource_group_name=None): def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, - managed_identity=False, tags=None): + identity_system_assigned=False, tags=None): storage_account_primary = StorageAccount(type='Primary', id=storage_account) return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary], - location, managed_identity, + location, identity_system_assigned, tags) @@ -66,9 +66,9 @@ def set_mediaservice_trusted_storage(client, resource_group_name, account_name, def create_or_update_mediaservice(client, resource_group_name, account_name, storage_accounts=None, - location=None, managed_identity=False, + location=None, identity_system_assigned=False, tags=None): - identity = 'SystemAssigned' if managed_identity else 'None' + identity = 'SystemAssigned' if identity_system_assigned else 'None' media_service = MediaService(location=location, storage_accounts=storage_accounts, identity=MediaServiceIdentity(type=identity), tags=tags) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index 7a7fe8a273b..7019e762c5b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -10,6 +10,7 @@ from azure.cli.core.util import CLIError from azure.cli.command_modules.ams._completers import get_mru_type_completion_list from azure.cli.core.commands.client_factory import get_subscription_id +from azure.cli.core.azclierror import BadRequestError _rut_dict = {0: 'S1', 1: 'S2', @@ -20,7 +21,7 @@ def get_mru(client, cmd, resource_group_name, account_name): account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('The media reserved unit operation failed as the Media Services account was created with the' + raise BadRequestError('The media reserved unit operation failed as the Media Services account was created with the' ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' ' media reserved units as the system will automatically scale up and down based on load.') mru = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name).get_mru() @@ -31,7 +32,7 @@ def set_mru(client, cmd, resource_group_name, account_name, count=None, type=Non account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise CLIError('The media reserved unit operation failed as the Media Services account was created with the' + raise BadRequestError('The media reserved unit operation failed as the Media Services account was created with the' ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' ' media reserved units as the system will automatically scale up and down based on load.') client = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml index 52392210c40..6dcdb9887d4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"b268eb59-a3cd-49fc-a7a1-1bfd9fff4059\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"51b33ba9-ae34-4dc3-bd2f-908ca03d525f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.5603894Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.5603894Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '781' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:02 GMT + - Tue, 23 Feb 2021 01:56:51 GMT expires: - '-1' odata-version: @@ -85,17 +85,17 @@ interactions: response: body: string: "{\r\n \"nameAvailable\":false,\"reason\":\"AlreadyExists\",\"message\":\"Already - in use by another Media Service account. Please try again with a name that - is not likely to be in use.\"\r\n}" + in use by another account. Please try again with a name that is not likely + to be in use.\"\r\n}" headers: cache-control: - no-cache content-length: - - '177' + - '163' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:02 GMT + - Tue, 23 Feb 2021 01:56:51 GMT expires: - '-1' odata-version: @@ -113,7 +113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -152,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:03 GMT + - Tue, 23 Feb 2021 01:56:52 GMT expires: - '-1' odata-version: @@ -202,17 +202,17 @@ interactions: response: body: string: "{\r\n \"nameAvailable\":false,\"reason\":\"Invalid\",\"message\":\"The - Media Services account name should be between 3 and 24 characters and may - contain only lowercase letters and numbers.\"\r\n}" + Media Account account name should be between 3 and 24 characters and may contain + only lowercase letters and numbers.\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '181' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:04 GMT + - Tue, 23 Feb 2021 01:56:52 GMT expires: - '-1' odata-version: @@ -265,7 +265,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:24:06 GMT + - Tue, 23 Feb 2021 01:56:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml index e2a76bfd4c8..8e0e80c9a2b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --managed-identity + - -n -g --storage-account -l --identity-system-assigned User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,20 +27,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6144858Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '897' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:16 GMT + - Tue, 23 Feb 2021 01:56:54 GMT expires: - '-1' odata-version: @@ -54,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -81,20 +82,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6144858Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '897' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:17 GMT + - Tue, 23 Feb 2021 01:56:55 GMT expires: - '-1' odata-version: @@ -144,20 +146,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '930' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:19 GMT + - Tue, 23 Feb 2021 01:56:57 GMT expires: - '-1' odata-version: @@ -168,13 +171,17 @@ 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-writes: - - '1194' + - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -199,21 +206,22 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n + \ \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n - \ \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n + \ \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1014' + - '1264' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:20 GMT + - Tue, 23 Feb 2021 01:56:57 GMT expires: - '-1' odata-version: @@ -256,20 +264,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"645943a5-4ad8-47b2-87ea-46b0d59c388c\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a3e67c3b-34f0-4ee4-9d64-dbdb3bd49983\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '930' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:21 GMT + - Tue, 23 Feb 2021 01:56:58 GMT expires: - '-1' odata-version: @@ -320,7 +329,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:24:22 GMT + - Tue, 23 Feb 2021 01:57:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index 9ee7543f2a2..9265a5409e8 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --managed-identity + - -n -g --storage-account -l --identity-system-assigned User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,20 +27,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:32.1604539Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '897' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Fri, 19 Feb 2021 20:57:01 GMT + - Tue, 23 Feb 2021 01:58:36 GMT expires: - '-1' odata-version: @@ -80,7 +81,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-19T20:55:41Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-23T01:57:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -89,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:01 GMT + - Tue, 23 Feb 2021 01:58:36 GMT expires: - '-1' pragma: @@ -144,19 +145,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 19 Feb 2021 20:57:01 GMT + - Tue, 23 Feb 2021 01:58:37 GMT duration: - - '495160' + - '987870' expires: - '-1' ocp-aad-diagnostics-server-name: - - O/gujSSLte2MUoyUsZ6+IL3PDKIjLaKTuClKymqgLfU= + - 9U6gG1kEwV/gyAzyYUWKznGwphsP2NBE/ezGuURjS/w= ocp-aad-session-key: - - 71rUXkqllAyeWOZ6En6rorAJevZimGvAczwspDR5lOrI5nEHb1b4o6OZX47LEOc10csfZDATSJhxucpIBgtoStPPHcpubYw4NcVQZky0fJiOhM3Cu2yz2PJlGeFH_MDH.30liPgiq4NejJ0hnjCQprGz59-wIIYZYi0qeauEo9mM + - 8xXQkRS4du6qgJKrrXkK62s0x3U0a4hBCYeLwSnftWwdE9Hy6JWJLuuyfuOZKusIIaXKJRo5Lsxb_UDedSlPdLnFVdWQwzr1sprQgfnY3KwOA5LQUz-5qH0i1MkLhcbq.he9Q7yB3qPbiwTaULBzoGqSQ_PkVKXPpQWBztATicWY pragma: - no-cache request-id: - - 4a9a0fdb-04af-439b-8ad9-e94d1343a2b1 + - 3f783e20-df7a-4033-9df7-ea200529850a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -212,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:02 GMT + - Tue, 23 Feb 2021 01:58:37 GMT expires: - '-1' pragma: @@ -270,7 +271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:02 GMT + - Tue, 23 Feb 2021 01:58:38 GMT expires: - '-1' pragma: @@ -315,7 +316,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"3yTYMUvvsF8qTpnuOl22y_pP3Di4pYHsUF4ieH9VoGZ4CJMgFs60zUwZYwAp_w51mV-liciXExQ9HU-bCXsPVCQzyQeOO9_APQ307Ya_ujxgVmVEu1PoZlUukstoDEavWnhaGZWA3X4Up_t6OdZ_5f-m3wG2u9DnEAAk35j2QjKPnHDzqnPQ-5YI436Ws6YEun-GLl0KY2G6k71qQiEJjOTjMTlH6CLgOJGZCVoue9WMxdmwFLm0SrhtXORipfO_RClRwbJZjF9s5-xNkuRqNKzqmF0ZlUYVaZ89UP8t90Wa8KAo8VNZ_gPPytRcNjJlbmEHn47KGFHUzxJLoiw3HQ","e":"AQAB"},"attributes":{"enabled":true,"created":1613768224,"updated":1613768224,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0MKBr3jpeoOIg-KO2Q4a9FKqkVDYIDsvZoSroM9T1xUhS6FVsdRlTiFZI5ac2DNUgTt4hUn1PD7nWOL_6IR04rWAYxd7FR8Ro3dgBOgFXW45o_lZrqTTx-l7ozgwlJNB_FNeqZkLa2YaoKyyYfbb4FpwK1nFrwfyAouuxNIYMmUaEmmt68ZZUPFWioCNmrztG1JoCb0vy0T1t1x_kDVwdaQZJhW2WSdtiak7UalYMwX88mBRogZ9Uxp8MVR2QMBGL0JkMdabvD763WFwjWdHedor8f6xEgZ4PpEwTce2BEXD5saK8pxFRZr4HZC_pyssaGy4WBBocJs-UNRBEMf39Q","e":"AQAB"},"attributes":{"enabled":true,"created":1614045520,"updated":1614045520,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -324,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:04 GMT + - Tue, 23 Feb 2021 01:58:40 GMT expires: - '-1' pragma: @@ -372,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:05 GMT + - Tue, 23 Feb 2021 01:58:40 GMT expires: - '-1' pragma: @@ -414,7 +415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:05 GMT + - Tue, 23 Feb 2021 01:58:39 GMT expires: - '-1' pragma: @@ -448,7 +449,7 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "9812b8b2-6843-437f-ad54-603ecdb5ddd1", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "2215be1d-ecf0-412f-9ad4-9cc8021db058", "permissions": {"keys": ["get", "wrapKey", "unwrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -473,7 +474,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"9812b8b2-6843-437f-ad54-603ecdb5ddd1","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"2215be1d-ecf0-412f-9ad4-9cc8021db058","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -482,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Feb 2021 20:57:05 GMT + - Tue, 23 Feb 2021 01:58:40 GMT expires: - '-1' pragma: @@ -520,7 +521,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -a -g --key-source --key-identifier + - -a -g --key-type --key-identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -531,20 +532,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:32.1604539Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '897' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Fri, 19 Feb 2021 20:57:05 GMT + - Tue, 23 Feb 2021 01:58:41 GMT expires: - '-1' odata-version: @@ -567,7 +569,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -583,7 +585,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -a -g --key-source --key-identifier + - -a -g --key-type --key-identifier User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -594,21 +596,22 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:42.9285819Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1183' + - '1425' content-type: - application/json; odata.metadata=minimal date: - - Fri, 19 Feb 2021 20:57:12 GMT + - Tue, 23 Feb 2021 01:58:48 GMT expires: - '-1' odata-version: @@ -626,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -653,21 +656,22 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"7b248b03-cd1f-4a7b-8384-e713699c2d2c\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/257242adde144ff2a5a3625825bbd6b9\"\r\n - \ }\r\n }\r\n },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"9812b8b2-6843-437f-ad54-603ecdb5ddd1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:42.9285819Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1183' + - '1425' content-type: - application/json; odata.metadata=minimal date: - - Fri, 19 Feb 2021 20:57:12 GMT + - Tue, 23 Feb 2021 01:58:49 GMT expires: - '-1' odata-version: @@ -718,7 +722,7 @@ interactions: content-length: - '0' date: - - Fri, 19 Feb 2021 20:57:15 GMT + - Tue, 23 Feb 2021 01:58:51 GMT expires: - '-1' pragma: @@ -762,7 +766,7 @@ interactions: content-length: - '0' date: - - Fri, 19 Feb 2021 20:57:17 GMT + - Tue, 23 Feb 2021 01:58:54 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml index 0feed5a1582..566a4264b8a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml @@ -27,20 +27,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:08.4242808Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '783' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:20 GMT + - Tue, 23 Feb 2021 01:57:12 GMT expires: - '-1' odata-version: @@ -81,20 +81,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:08.4242808Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '783' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:21 GMT + - Tue, 23 Feb 2021 01:57:13 GMT expires: - '-1' odata-version: @@ -143,21 +143,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:13.7274345Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1041' + - '1283' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:23 GMT + - Tue, 23 Feb 2021 01:57:15 GMT expires: - '-1' odata-version: @@ -168,13 +168,17 @@ 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-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -198,21 +202,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:13.7274345Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1041' + - '1283' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:24 GMT + - Tue, 23 Feb 2021 01:57:16 GMT expires: - '-1' odata-version: @@ -260,20 +264,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"fedf7d16-d5a3-431b-a578-1788e60f28d6\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:17.700384Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '783' + - '1024' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:27 GMT + - Tue, 23 Feb 2021 01:57:19 GMT expires: - '-1' odata-version: @@ -284,11 +288,15 @@ 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-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml index bec5d9055cc..4c7a59ab32f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml @@ -28,20 +28,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"f436e0b1-be45-4988-af14-92b72918f06b\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"cad27fa7-be66-42ee-a03c-88412b8723ab\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"identity\":{\r\n \"type\":\"None\"\r\n - \ }\r\n}" + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6421454Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6421454Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '788' + - '1030' content-type: - application/json; odata.metadata=minimal date: - - Thu, 21 Jan 2021 00:24:04 GMT + - Tue, 23 Feb 2021 01:56:55 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -92,7 +92,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:24:07 GMT + - Tue, 23 Feb 2021 01:56:57 GMT expires: - '-1' pragma: @@ -139,7 +139,7 @@ interactions: content-length: - '0' date: - - Thu, 21 Jan 2021 00:24:12 GMT + - Tue, 23 Feb 2021 01:56:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py index ec106cd5e48..163efe62605 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -23,7 +23,7 @@ def test_ams_encryption_set_show(self, resource_group, storage_account_for_creat 'identityPermissions': "get unwrapkey wrapkey", }) - account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --managed-identity', checks=[ + account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --identity-system-assigned', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US') ]) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py index b2c5422e01b..69bb966f08f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py @@ -18,7 +18,7 @@ def test_ams_create_show(self, resource_group, storage_account_for_create): 'location': 'centralus' }) - self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --managed-identity', checks=[ + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --identity-system-assigned', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US'), self.check('identity.type', 'SystemAssigned') @@ -108,7 +108,7 @@ def test_ams_check_name(self, resource_group, storage_account_for_create): self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}') self.cmd('az ams account check-name --location {location} -n {amsname}', checks=[ - self.check('@', 'Already in use by another Media Service account. Please try again with a name that is not likely to be in use.') + self.check('@', 'Already in use by another account. Please try again with a name that is not likely to be in use.') ]) self.cmd('az ams account check-name --location {location} -n {amsname2}', checks=[ @@ -116,7 +116,7 @@ def test_ams_check_name(self, resource_group, storage_account_for_create): ]) self.cmd('az ams account check-name --location {location} -n {amsname3}', checks=[ - self.check('@', 'The Media Services account name should be between 3 and 24 characters and may contain only lowercase letters and numbers.') + self.check('@', 'The Media Account account name should be between 3 and 24 characters and may contain only lowercase letters and numbers.') ]) self.cmd('az ams account delete -n {amsname} -g {rg}') diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index c3d9c4af38c..6014f52a3b8 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -98,7 +98,7 @@ 'azure-mgmt-managementgroups~=0.1', 'azure-mgmt-maps~=0.1.0', 'azure-mgmt-marketplaceordering~=0.1', - 'azure-mgmt-media~=3.0,>=3.0.0', + 'azure-mgmt-media~=3.0', 'azure-mgmt-monitor~=2.0.0', 'azure-mgmt-msi~=0.2', 'azure-mgmt-netapp~=0.14.0', From 87c29b19d6048c4ae10f0945a8a1c1e673391a98 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 22 Feb 2021 18:25:03 -0800 Subject: [PATCH 26/30] fixed style and linter errors --- .../cli/command_modules/ams/_completers.py | 7 +- .../azure/cli/command_modules/ams/_help.py | 8 +- .../azure/cli/command_modules/ams/_params.py | 7 +- .../cli/command_modules/ams/_sdk_utils.py | 3 + .../command_modules/ams/operations/account.py | 8 +- .../ams/operations/encryption.py | 5 +- .../cli/command_modules/ams/operations/mru.py | 14 ++-- .../recordings/test_ams_check_name.yaml | 18 ++-- .../recordings/test_ams_create_show.yaml | 58 ++++++------- .../test_ams_encryption_set_show.yaml | 82 +++++++++---------- .../test_ams_storage_add_remove.yaml | 40 ++++----- .../test_ams_sync_storage_keys.yaml | 10 +-- .../test_ams_account_encryption_scenarios.py | 3 +- .../latest/test_ams_account_scenarios.py | 5 +- 14 files changed, 143 insertions(+), 125 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 2b46f24dcac..04eeadcc8b0 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -13,7 +13,8 @@ get_protocols, get_encoding_types, get_allowed_resolutions, get_transcription_langauges, get_analysis_modes, get_stretch_mode_types, - get_storage_authentication_allowed_values) + get_storage_authentication_allowed_values, + get_managed_identity_allowed_values) from azure.mgmt.media.models import EncoderNamedPreset @@ -97,3 +98,7 @@ def get_stretch_mode_types_list(): def get_storage_authentication_allowed_values_list(): values = get_storage_authentication_allowed_values() return values + +def get_managed_identity_allowed_values_list(): + values = get_managed_identity_allowed_values() + return values diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index a49148864d0..efe7f2170a3 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -55,6 +55,10 @@ helps['ams account encryption show'] = """ type: command short-summary: Show the details of encryption settings for an Azure Media Services account. + examples: + - name: Show the media account's encryption details + text: > + az ams account encryption show --account-name myAmsAccount -g myRG """ helps['ams account encryption set'] = """ @@ -63,10 +67,10 @@ examples: - name: Set the media account's encryption to a customer managed key text: > - az ams account encryption create -a myAmsAccount -g myRG --key-source CustomerKey --key-vault-id keyVaultId + az ams account encryption set -a myAmsAccount -g myRG --key-type CustomerKey --key-identifier keyVaultId - name: Set the media account's encryption to a system managed key text: > - az ams account encryption create -a myAmsAccount -g myRG --key-source SystemKey + az ams account encryption set -a myAmsAccount -g myRG --key-type SystemKey """ helps['ams account storage'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 847e17f4c9d..4a817ed04c2 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -28,7 +28,8 @@ get_allowed_transcription_languages, get_allowed_analysis_modes, get_stretch_mode_types_list, - get_storage_authentication_allowed_values_list) + get_storage_authentication_allowed_values_list, + get_managed_identity_allowed_values_list) from azure.cli.command_modules.ams._validators import (validate_storage_account_id, datetime_format, @@ -66,7 +67,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account create') as c: c.argument('storage_account', storage_account_arg_type, help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.') - c.argument('identity_system_assigned', help='Set this flag to enable managed identity on the account.', action='store_true') + c.argument('assign_identity', arg_type=get_enum_type(get_managed_identity_allowed_values_list()), help='Set the managed identity on the media services account.') with self.argument_context('ams account check-name') as c: c.argument('account_name', options_list=['--name', '-n'], id_part=None, @@ -104,7 +105,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('account_name', account_name_arg_type) c.argument('key_type', help='The encryption key source (provider). Allowed values: SystemKey, CustomerKey.', required=True) c.argument('key_identifier', help='The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).') - c.argument('current_key_identifier', help='The current key used to encrypt the Media Services account, including the key version.') + c.argument('current_key_id', help='The current key used to encrypt the Media Services account, including the key version.') with self.argument_context('ams transform') as c: c.argument('account_name', account_name_arg_type) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 9dc931355ac..ae918c87282 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -77,3 +77,6 @@ def get_stretch_mode_types(): def get_storage_authentication_allowed_values(): return ['System', 'ManagedIdentity'] + +def get_managed_identity_allowed_values(): + return ['System'] diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index e0206bd93db..e7b0607a2dd 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -18,11 +18,11 @@ def list_mediaservices(client, resource_group_name=None): def create_mediaservice(client, resource_group_name, account_name, storage_account, location=None, - identity_system_assigned=False, tags=None): + assign_identity=False, tags=None): storage_account_primary = StorageAccount(type='Primary', id=storage_account) return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary], - location, identity_system_assigned, + location, assign_identity, tags) @@ -66,9 +66,9 @@ def set_mediaservice_trusted_storage(client, resource_group_name, account_name, def create_or_update_mediaservice(client, resource_group_name, account_name, storage_accounts=None, - location=None, identity_system_assigned=False, + location=None, assign_identity=False, tags=None): - identity = 'SystemAssigned' if identity_system_assigned else 'None' + identity = 'SystemAssigned' if assign_identity == 'System' else 'None' media_service = MediaService(location=location, storage_accounts=storage_accounts, identity=MediaServiceIdentity(type=identity), tags=tags) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py index ad0628f2c07..cb7142d8073 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -17,12 +17,13 @@ def get_encryption(client, resource_group_name, account_name): def set_encryption(client, resource_group_name, account_name, key_type=None, - current_key_identifier=None, key_identifier=None): + current_key_id=None, key_identifier=None): try: account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if key_type == 'CustomerKey': - key_vault_props = KeyVaultProperties(key_identifier=key_identifier, current_key_identifier=current_key_identifier) + key_vault_props = KeyVaultProperties(key_identifier=key_identifier, + current_key_identifier=current_key_id) else: key_vault_props = None encryption = AccountEncryption(type=key_type, key_vault_properties=key_vault_props) diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index 7019e762c5b..3329d85f258 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py @@ -21,9 +21,10 @@ def get_mru(client, cmd, resource_group_name, account_name): account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise BadRequestError('The media reserved unit operation failed as the Media Services account was created with the' - ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' - ' media reserved units as the system will automatically scale up and down based on load.') + raise BadRequestError('The media reserved unit operation failed as the Media Services account was created' + ' with the 2020-05-01 version of the API or later. Accounts created this way no' + ' longer need to set media reserved units as the system will automatically' + ' scale up and down based on load.') mru = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name).get_mru() return _map_mru(mru) @@ -32,9 +33,10 @@ def set_mru(client, cmd, resource_group_name, account_name, count=None, type=Non account_info = client.get(resource_group_name, account_name) if resource_group_name else client.get_by_subscription(account_name) if account_info.encryption: - raise BadRequestError('The media reserved unit operation failed as the Media Services account was created with the' - ' 2020-05-01 version of the API or later. Accounts created this way no longer need to set' - ' media reserved units as the system will automatically scale up and down based on load.') + raise BadRequestError('The media reserved unit operation failed as the Media Services account was created' + ' with the 2020-05-01 version of the API or later. Accounts created this way no' + ' longer need to set media reserved units as the system will automatically' + ' scale up and down based on load.') client = MediaV2Client(cmd.cli_ctx, resource_group_name, account_name) mru = client.get_mru() diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml index 6dcdb9887d4..7524be1cf62 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"51b33ba9-ae34-4dc3-bd2f-908ca03d525f\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"9e2ed18f-3ffc-43d2-9fd8-affe4c4c55b2\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.5603894Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.5603894Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.5577744Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.5577744Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:51 GMT + - Tue, 23 Feb 2021 02:24:14 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:51 GMT + - Tue, 23 Feb 2021 02:24:14 GMT expires: - '-1' odata-version: @@ -152,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:52 GMT + - Tue, 23 Feb 2021 02:24:15 GMT expires: - '-1' odata-version: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:52 GMT + - Tue, 23 Feb 2021 02:24:15 GMT expires: - '-1' odata-version: @@ -230,7 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:56:55 GMT + - Tue, 23 Feb 2021 02:24:18 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml index 8e0e80c9a2b..92340a8f5a6 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --identity-system-assigned + - -n -g --storage-account -l --assign-identity User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,21 +27,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6144858Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.696628Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1139' + - '1137' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:54 GMT + - Tue, 23 Feb 2021 02:24:19 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -82,21 +82,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6144858Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.696628Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1139' + - '1137' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:55 GMT + - Tue, 23 Feb 2021 02:24:20 GMT expires: - '-1' odata-version: @@ -146,21 +146,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1172' + - '1171' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:57 GMT + - Tue, 23 Feb 2021 02:24:22 GMT expires: - '-1' odata-version: @@ -206,22 +206,22 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n + \ \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n - \ \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1264' + - '1263' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:57 GMT + - Tue, 23 Feb 2021 02:24:23 GMT expires: - '-1' odata-version: @@ -264,21 +264,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"0185d5e8-20d8-4fa1-94a2-22b6094602a1\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6144858Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:55.9834326Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"8d03bcfb-0c2a-47c4-a135-96e7ffc8ac35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1172' + - '1171' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:58 GMT + - Tue, 23 Feb 2021 02:24:22 GMT expires: - '-1' odata-version: @@ -329,7 +329,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:57:00 GMT + - Tue, 23 Feb 2021 02:24:25 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index 9265a5409e8..1eac9092a7f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --identity-system-assigned + - -n -g --storage-account -l --assign-identity User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,11 +27,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:32.1604539Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:07.6669164Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:58:36 GMT + - Tue, 23 Feb 2021 02:23:15 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-23T01:57:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-23T02:22:11Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:36 GMT + - Tue, 23 Feb 2021 02:23:15 GMT expires: - '-1' pragma: @@ -145,19 +145,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 23 Feb 2021 01:58:37 GMT + - Tue, 23 Feb 2021 02:23:16 GMT duration: - - '987870' + - '533221' expires: - '-1' ocp-aad-diagnostics-server-name: - - 9U6gG1kEwV/gyAzyYUWKznGwphsP2NBE/ezGuURjS/w= + - yPZf/wC0G+D1a/DEHGgGnNtFJX+qiopHbzmtPtdBAzs= ocp-aad-session-key: - - 8xXQkRS4du6qgJKrrXkK62s0x3U0a4hBCYeLwSnftWwdE9Hy6JWJLuuyfuOZKusIIaXKJRo5Lsxb_UDedSlPdLnFVdWQwzr1sprQgfnY3KwOA5LQUz-5qH0i1MkLhcbq.he9Q7yB3qPbiwTaULBzoGqSQ_PkVKXPpQWBztATicWY + - gNlZlQSCAbU3aDJypdEIQIyIyH8X7CWR7XIOGayTK3ePToejv3pcIKfr93rA5u858HOCjclRTLSdAuk3m05sfAM0ckT3A3-Np4QLAIhNKu_Uuc_cj5Ikack9j5ezYpOC.a1ienxzhBfoaA5KDSZWeNCJ66RHNxUSMfsAj1tFC1Xk pragma: - no-cache request-id: - - 3f783e20-df7a-4033-9df7-ea200529850a + - 2ce6edc6-2791-4f19-970a-1cd73a54adfd strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:37 GMT + - Tue, 23 Feb 2021 02:23:17 GMT expires: - '-1' pragma: @@ -271,7 +271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:38 GMT + - Tue, 23 Feb 2021 02:23:17 GMT expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.205;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.174.205;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: @@ -316,7 +316,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0MKBr3jpeoOIg-KO2Q4a9FKqkVDYIDsvZoSroM9T1xUhS6FVsdRlTiFZI5ac2DNUgTt4hUn1PD7nWOL_6IR04rWAYxd7FR8Ro3dgBOgFXW45o_lZrqTTx-l7ozgwlJNB_FNeqZkLa2YaoKyyYfbb4FpwK1nFrwfyAouuxNIYMmUaEmmt68ZZUPFWioCNmrztG1JoCb0vy0T1t1x_kDVwdaQZJhW2WSdtiak7UalYMwX88mBRogZ9Uxp8MVR2QMBGL0JkMdabvD763WFwjWdHedor8f6xEgZ4PpEwTce2BEXD5saK8pxFRZr4HZC_pyssaGy4WBBocJs-UNRBEMf39Q","e":"AQAB"},"attributes":{"enabled":true,"created":1614045520,"updated":1614045520,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"xMpzXZ48JSE2sMX8cXIjO8J_58ozCXYPQxaNY3wJyzGgKSpy_mVlrlkvHkCmT1_o7mwKj7xVmFdCzsoz1C5RfQ9UHSfl4Gt8qa9ooBDJ_H9VFTCu90-xMBgvPtJJZ39pUAg8XxgbBKCH18qP_H_dDZHfTV-1PcQZhXlfCLY_JXQ_Js0Com0fX5U1Qe0KRPecooyyEnCayESuL-2-juklTLwPmhVq-ef8fxbYeB3YRLA0MaB4FcPC_yw7t-PGzo90tfouGmB8Z9YFwH95CF-wZeQ6EPFEVctaxksQpMYqkmmjHI0h0teNmoOC3PEUNNzNBIJaz5DfP3ByaJ-5BEXgdQ","e":"AQAB"},"attributes":{"enabled":true,"created":1614046997,"updated":1614046997,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:40 GMT + - Tue, 23 Feb 2021 02:23:17 GMT expires: - '-1' pragma: @@ -335,7 +335,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.205;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.174.205;act_addr_fam=InterNetwork; x-ms-keyvault-region: - centralus x-ms-keyvault-service-version: @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:40 GMT + - Tue, 23 Feb 2021 02:23:17 GMT expires: - '-1' pragma: @@ -415,7 +415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:39 GMT + - Tue, 23 Feb 2021 02:23:17 GMT expires: - '-1' pragma: @@ -449,7 +449,7 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "2215be1d-ecf0-412f-9ad4-9cc8021db058", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "761b68dc-f9ba-457f-9022-9866da72477d", "permissions": {"keys": ["get", "wrapKey", "unwrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -474,7 +474,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"2215be1d-ecf0-412f-9ad4-9cc8021db058","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"761b68dc-f9ba-457f-9022-9866da72477d","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -483,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 01:58:40 GMT + - Tue, 23 Feb 2021 02:23:18 GMT expires: - '-1' pragma: @@ -532,11 +532,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:32.1604539Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:07.6669164Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -546,7 +546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:58:41 GMT + - Tue, 23 Feb 2021 02:23:18 GMT expires: - '-1' odata-version: @@ -569,7 +569,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -596,12 +596,12 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\"\r\n - \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:42.9285819Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:19.9437087Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -611,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:58:48 GMT + - Tue, 23 Feb 2021 02:23:25 GMT expires: - '-1' odata-version: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -656,12 +656,12 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"059e011a-49ad-4f93-a915-aaaff5c5b109\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cba4c2b368344abbb077f3cfc709452d\"\r\n - \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:58:32.1604539Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:58:42.9285819Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"2215be1d-ecf0-412f-9ad4-9cc8021db058\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:19.9437087Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -671,7 +671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:58:49 GMT + - Tue, 23 Feb 2021 02:23:25 GMT expires: - '-1' odata-version: @@ -722,7 +722,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:58:51 GMT + - Tue, 23 Feb 2021 02:23:28 GMT expires: - '-1' pragma: @@ -766,7 +766,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:58:54 GMT + - Tue, 23 Feb 2021 02:23:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml index 566a4264b8a..17fc6d9ab88 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:08.4242808Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:32.5180057Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:57:12 GMT + - Tue, 23 Feb 2021 02:24:38 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -81,10 +81,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:08.4242808Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:32.5180057Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:57:13 GMT + - Tue, 23 Feb 2021 02:24:38 GMT expires: - '-1' odata-version: @@ -143,11 +143,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:13.7274345Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:40.2412054Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:57:15 GMT + - Tue, 23 Feb 2021 02:24:41 GMT expires: - '-1' odata-version: @@ -202,11 +202,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:13.7274345Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:40.2412054Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -216,7 +216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:57:16 GMT + - Tue, 23 Feb 2021 02:24:43 GMT expires: - '-1' odata-version: @@ -264,20 +264,20 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"ba80b80f-4805-4dbb-a974-955b7a0c4b46\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:57:08.4242808Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:57:17.700384Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:44.4790235Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1024' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:57:19 GMT + - Tue, 23 Feb 2021 02:24:45 GMT expires: - '-1' odata-version: @@ -295,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml index 4c7a59ab32f..f8bf6a2eb96 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml @@ -28,10 +28,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"cad27fa7-be66-42ee-a03c-88412b8723ab\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5ebc9d71-c85e-4feb-9817-7c7fcf73185a\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T01:56:49.6421454Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T01:56:49.6421454Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.6497259Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.6497259Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 01:56:55 GMT + - Tue, 23 Feb 2021 02:24:18 GMT expires: - '-1' odata-version: @@ -92,7 +92,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:56:57 GMT + - Tue, 23 Feb 2021 02:24:20 GMT expires: - '-1' pragma: @@ -139,7 +139,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 01:56:59 GMT + - Tue, 23 Feb 2021 02:24:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py index 163efe62605..045bc8bef4d 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -21,9 +21,10 @@ def test_ams_encryption_set_show(self, resource_group, storage_account_for_creat 'keyVault': key_vault, 'keyName': self.create_random_name(prefix='ams', length=12), 'identityPermissions': "get unwrapkey wrapkey", + 'identity': "System", }) - account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --identity-system-assigned', checks=[ + account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --assign-identity {identity}', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US') ]) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py index 69bb966f08f..ca6418f5a31 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py @@ -15,10 +15,11 @@ def test_ams_create_show(self, resource_group, storage_account_for_create): self.kwargs.update({ 'amsname': amsname, 'storageAccount': storage_account_for_create, - 'location': 'centralus' + 'location': 'centralus', + 'identity': 'System' }) - self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --identity-system-assigned', checks=[ + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --assign-identity {identity}', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US'), self.check('identity.type', 'SystemAssigned') From 0c7e807e2d04050992b4671402a00941f40233d0 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 22 Feb 2021 18:40:52 -0800 Subject: [PATCH 27/30] fixing style issues --- src/azure-cli/azure/cli/command_modules/ams/_completers.py | 1 + src/azure-cli/azure/cli/command_modules/ams/_help.py | 2 +- src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 04eeadcc8b0..0678bb3c006 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -99,6 +99,7 @@ def get_storage_authentication_allowed_values_list(): values = get_storage_authentication_allowed_values() return values + def get_managed_identity_allowed_values_list(): values = get_managed_identity_allowed_values() return values diff --git a/src/azure-cli/azure/cli/command_modules/ams/_help.py b/src/azure-cli/azure/cli/command_modules/ams/_help.py index efe7f2170a3..bbdf2063fb4 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_help.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_help.py @@ -67,7 +67,7 @@ examples: - name: Set the media account's encryption to a customer managed key text: > - az ams account encryption set -a myAmsAccount -g myRG --key-type CustomerKey --key-identifier keyVaultId + az ams account encryption set -a myAmsAccount -g myRG --key-type CustomerKey --key-identifier keyVaultId - name: Set the media account's encryption to a system managed key text: > az ams account encryption set -a myAmsAccount -g myRG --key-type SystemKey diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index ae918c87282..5d8552daf42 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -78,5 +78,6 @@ def get_stretch_mode_types(): def get_storage_authentication_allowed_values(): return ['System', 'ManagedIdentity'] + def get_managed_identity_allowed_values(): return ['System'] From f3f24bf7989df3c75542bb0976b52b5276d32e94 Mon Sep 17 00:00:00 2001 From: hivyas Date: Mon, 22 Feb 2021 19:47:46 -0800 Subject: [PATCH 28/30] adding none to allowed values --- src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index 5d8552daf42..d444b99c296 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -80,4 +80,4 @@ def get_storage_authentication_allowed_values(): def get_managed_identity_allowed_values(): - return ['System'] + return ['None', 'System'] From 1a784d9e5e5a3e06bd6e1dabbf8f18651ee78165 Mon Sep 17 00:00:00 2001 From: hivyas Date: Tue, 23 Feb 2021 10:51:22 -0800 Subject: [PATCH 29/30] spliting assign_identity into system and user --- .../cli/command_modules/ams/_completers.py | 8 +- .../azure/cli/command_modules/ams/_params.py | 5 +- .../cli/command_modules/ams/_sdk_utils.py | 4 - .../command_modules/ams/operations/account.py | 2 +- .../recordings/test_ams_check_name.yaml | 18 ++--- .../recordings/test_ams_create_show.yaml | 58 +++++++------- .../test_ams_encryption_set_show.yaml | 80 +++++++++---------- .../test_ams_storage_add_remove.yaml | 38 ++++----- .../test_ams_sync_storage_keys.yaml | 10 +-- .../test_ams_account_encryption_scenarios.py | 3 +- .../latest/test_ams_account_scenarios.py | 3 +- 11 files changed, 108 insertions(+), 121 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/ams/_completers.py b/src/azure-cli/azure/cli/command_modules/ams/_completers.py index 0678bb3c006..2b46f24dcac 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_completers.py @@ -13,8 +13,7 @@ get_protocols, get_encoding_types, get_allowed_resolutions, get_transcription_langauges, get_analysis_modes, get_stretch_mode_types, - get_storage_authentication_allowed_values, - get_managed_identity_allowed_values) + get_storage_authentication_allowed_values) from azure.mgmt.media.models import EncoderNamedPreset @@ -98,8 +97,3 @@ def get_stretch_mode_types_list(): def get_storage_authentication_allowed_values_list(): values = get_storage_authentication_allowed_values() return values - - -def get_managed_identity_allowed_values_list(): - values = get_managed_identity_allowed_values() - return values diff --git a/src/azure-cli/azure/cli/command_modules/ams/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index 4a817ed04c2..404eed5f01e 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_params.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_params.py @@ -28,8 +28,7 @@ get_allowed_transcription_languages, get_allowed_analysis_modes, get_stretch_mode_types_list, - get_storage_authentication_allowed_values_list, - get_managed_identity_allowed_values_list) + get_storage_authentication_allowed_values_list) from azure.cli.command_modules.ams._validators import (validate_storage_account_id, datetime_format, @@ -67,7 +66,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('ams account create') as c: c.argument('storage_account', storage_account_arg_type, help='The name or resource ID of the primary storage account to attach to the Azure Media Services account. The storage account MUST be in the same Azure subscription as the Media Services account. It is strongly recommended that the storage account be in the same resource group as the Media Services account. Blob only accounts are not allowed as primary.') - c.argument('assign_identity', arg_type=get_enum_type(get_managed_identity_allowed_values_list()), help='Set the managed identity on the media services account.') + c.argument('assign_identity', options_list=['--id-system-assigned'], action='store_true', help='Set the system managed identity on the media services account.') with self.argument_context('ams account check-name') as c: c.argument('account_name', options_list=['--name', '-n'], id_part=None, diff --git a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py index d444b99c296..9dc931355ac 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py +++ b/src/azure-cli/azure/cli/command_modules/ams/_sdk_utils.py @@ -77,7 +77,3 @@ def get_stretch_mode_types(): def get_storage_authentication_allowed_values(): return ['System', 'ManagedIdentity'] - - -def get_managed_identity_allowed_values(): - return ['None', 'System'] diff --git a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index e7b0607a2dd..6e7dede3496 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/operations/account.py +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py @@ -68,7 +68,7 @@ def set_mediaservice_trusted_storage(client, resource_group_name, account_name, def create_or_update_mediaservice(client, resource_group_name, account_name, storage_accounts=None, location=None, assign_identity=False, tags=None): - identity = 'SystemAssigned' if assign_identity == 'System' else 'None' + identity = 'SystemAssigned' if assign_identity else 'None' media_service = MediaService(location=location, storage_accounts=storage_accounts, identity=MediaServiceIdentity(type=identity), tags=tags) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml index 7524be1cf62..bc153b59629 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_check_name.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - US\",\"properties\":{\r\n \"mediaServiceId\":\"9e2ed18f-3ffc-43d2-9fd8-affe4c4c55b2\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"a1f2baf9-79f3-404f-94e4-5f683316190b\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.5577744Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.5577744Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5575195Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:36.5575195Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:14 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -95,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:14 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -152,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:15 GMT + - Tue, 23 Feb 2021 18:38:39 GMT expires: - '-1' odata-version: @@ -212,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:15 GMT + - Tue, 23 Feb 2021 18:38:40 GMT expires: - '-1' odata-version: @@ -230,7 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:24:18 GMT + - Tue, 23 Feb 2021 18:38:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml index 92340a8f5a6..ef4c7735370 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_create_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --assign-identity + - -n -g --storage-account -l --id-system-assigned User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,21 +27,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c60df8ca-0581-4250-99ca-3eed35064546\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.696628Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5740727Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:36.5740727Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"875dec00-f334-4c8e-a0fd-eec37aa58c02\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1137' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:19 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -55,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -82,21 +82,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"c60df8ca-0581-4250-99ca-3eed35064546\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.696628Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5740727Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:36.5740727Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"875dec00-f334-4c8e-a0fd-eec37aa58c02\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1137' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:20 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -146,21 +146,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"c60df8ca-0581-4250-99ca-3eed35064546\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5740727Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:40.1108132Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"875dec00-f334-4c8e-a0fd-eec37aa58c02\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1171' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:22 GMT + - Tue, 23 Feb 2021 18:38:41 GMT expires: - '-1' odata-version: @@ -206,22 +206,22 @@ interactions: body: string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n - \ \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n + \ \"mediaServiceId\":\"c60df8ca-0581-4250-99ca-3eed35064546\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n - \ \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5740727Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:40.1108132Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"875dec00-f334-4c8e-a0fd-eec37aa58c02\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1263' + - '1264' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:23 GMT + - Tue, 23 Feb 2021 18:38:42 GMT expires: - '-1' odata-version: @@ -264,21 +264,21 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"b5721c6b-baf7-4b81-a961-36d4ff7cf716\",\"storageAccounts\":[\r\n + US\",\"tags\":{\r\n \"key\":\"value\"\r\n },\"properties\":{\r\n \"mediaServiceId\":\"c60df8ca-0581-4250-99ca-3eed35064546\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.696628Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:21.1713826Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"a4bb3b39-10bf-4f31-a0b0-69d06b479f3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5740727Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:40.1108132Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"875dec00-f334-4c8e-a0fd-eec37aa58c02\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1171' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:22 GMT + - Tue, 23 Feb 2021 18:38:43 GMT expires: - '-1' odata-version: @@ -329,7 +329,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:24:25 GMT + - Tue, 23 Feb 2021 18:38:44 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml index 1eac9092a7f..5d8e9789733 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storage-account -l --assign-identity + - -n -g --storage-account -l --id-system-assigned User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 @@ -27,11 +27,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aa8eb2be-3435-44d6-8cf6-3c0fa5596b8f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:07.6669164Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:41:40.6382441Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:41:40.6382441Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"6f4545fa-025e-4cdc-8fa5-97111d52ac04\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:23:15 GMT + - Tue, 23 Feb 2021 18:41:47 GMT expires: - '-1' odata-version: @@ -81,7 +81,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-23T02:22:11Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-23T18:40:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:15 GMT + - Tue, 23 Feb 2021 18:41:48 GMT expires: - '-1' pragma: @@ -145,19 +145,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 23 Feb 2021 02:23:16 GMT + - Tue, 23 Feb 2021 18:41:48 GMT duration: - - '533221' + - '564138' expires: - '-1' ocp-aad-diagnostics-server-name: - - yPZf/wC0G+D1a/DEHGgGnNtFJX+qiopHbzmtPtdBAzs= + - Hdntwjzps/WyG2RJNaiHocFk5JY1BOzRhjElKs8ZEEE= ocp-aad-session-key: - - gNlZlQSCAbU3aDJypdEIQIyIyH8X7CWR7XIOGayTK3ePToejv3pcIKfr93rA5u858HOCjclRTLSdAuk3m05sfAM0ckT3A3-Np4QLAIhNKu_Uuc_cj5Ikack9j5ezYpOC.a1ienxzhBfoaA5KDSZWeNCJ66RHNxUSMfsAj1tFC1Xk + - Y3FnzVIBMX6nnE5m1o2mXmbnTnK3jXltJdlUnPHsv-tmOy2RqSoJukIruYrSf7UAvQx_2Agl0ZMLn5lsBtFbiQCI-7JsG-9IcoN1oM-4I9jGMU7fRwKv0qeRZBzPciW6.dkYd7xjofmBGODPinSpnT3UjiKwJLTLrCyJ2qtYeGsE pragma: - no-cache request-id: - - 2ce6edc6-2791-4f19-970a-1cd73a54adfd + - 79ad2799-b95a-48cb-9acf-5286b1ad3642 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:17 GMT + - Tue, 23 Feb 2021 18:41:49 GMT expires: - '-1' pragma: @@ -233,7 +233,7 @@ interactions: x-ms-keyvault-service-version: - 1.0.104.232 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -271,7 +271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:17 GMT + - Tue, 23 Feb 2021 18:41:50 GMT expires: - '-1' pragma: @@ -316,7 +316,7 @@ interactions: uri: https://clitest000003.vault.azure.net/keys/ams000005/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"xMpzXZ48JSE2sMX8cXIjO8J_58ozCXYPQxaNY3wJyzGgKSpy_mVlrlkvHkCmT1_o7mwKj7xVmFdCzsoz1C5RfQ9UHSfl4Gt8qa9ooBDJ_H9VFTCu90-xMBgvPtJJZ39pUAg8XxgbBKCH18qP_H_dDZHfTV-1PcQZhXlfCLY_JXQ_Js0Com0fX5U1Qe0KRPecooyyEnCayESuL-2-juklTLwPmhVq-ef8fxbYeB3YRLA0MaB4FcPC_yw7t-PGzo90tfouGmB8Z9YFwH95CF-wZeQ6EPFEVctaxksQpMYqkmmjHI0h0teNmoOC3PEUNNzNBIJaz5DfP3ByaJ-5BEXgdQ","e":"AQAB"},"attributes":{"enabled":true,"created":1614046997,"updated":1614046997,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"x5bZhvclIOGsUpm930eoGYIPgaWdU4PzZADHgITx6zgO6LOogH0Whyd7IfnExHDqwQF2Jz4itgGdRNiIPTHsp1MHYjBqkrypiHJ_w-HCHVyMvPvRCDfhuJSMVy_8NPIF92wMiyUUtJ7yfk3Ulh6-UiBh4eQM4ACg0V_75cN6OShYGYrEpyYUmXj7W3gFpJWUBicgcEjiz-QNd4P3RwFK27KbvP-hOEO0p0n4UQhoM0zZoIvx0ikQH4rWMc1l0_4k-gOmw211FBRBHTu97bQp78pZrDXMHp_0Yi5RYUHjvaLNQuruCpuY96blTn8SeZPRUN8fefXSsmZr1twzD9abWQ","e":"AQAB"},"attributes":{"enabled":true,"created":1614105711,"updated":1614105711,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:17 GMT + - Tue, 23 Feb 2021 18:41:51 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:17 GMT + - Tue, 23 Feb 2021 18:41:51 GMT expires: - '-1' pragma: @@ -415,7 +415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:17 GMT + - Tue, 23 Feb 2021 18:41:51 GMT expires: - '-1' pragma: @@ -449,7 +449,7 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "761b68dc-f9ba-457f-9022-9866da72477d", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "6f4545fa-025e-4cdc-8fa5-97111d52ac04", "permissions": {"keys": ["get", "wrapKey", "unwrapKey"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -474,7 +474,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"761b68dc-f9ba-457f-9022-9866da72477d","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"508c96e0-d4ff-4c30-b886-34c377353339","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"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"6f4545fa-025e-4cdc-8fa5-97111d52ac04","permissions":{"keys":["get","wrapKey","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -483,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Feb 2021 02:23:18 GMT + - Tue, 23 Feb 2021 18:41:52 GMT expires: - '-1' pragma: @@ -532,11 +532,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aa8eb2be-3435-44d6-8cf6-3c0fa5596b8f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:07.6669164Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:41:40.6382441Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:41:40.6382441Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"6f4545fa-025e-4cdc-8fa5-97111d52ac04\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -546,7 +546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:23:18 GMT + - Tue, 23 Feb 2021 18:41:53 GMT expires: - '-1' odata-version: @@ -569,7 +569,7 @@ interactions: - request: body: '{"location": "Central US", "properties": {"storageAccounts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002", "type": "Primary"}], "encryption": {"type": "CustomerKey", "keyVaultProperties": - {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7"}}}, + {"keyIdentifier": "https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8"}}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: @@ -596,12 +596,12 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aa8eb2be-3435-44d6-8cf6-3c0fa5596b8f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\"\r\n - \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:19.9437087Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:41:40.6382441Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:41:54.1386113Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"6f4545fa-025e-4cdc-8fa5-97111d52ac04\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -611,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:23:25 GMT + - Tue, 23 Feb 2021 18:41:56 GMT expires: - '-1' odata-version: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -656,12 +656,12 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Central - US\",\"properties\":{\r\n \"mediaServiceId\":\"c6cded68-f1da-4150-850c-ef9e99920255\",\"storageAccounts\":[\r\n + US\",\"properties\":{\r\n \"mediaServiceId\":\"aa8eb2be-3435-44d6-8cf6-3c0fa5596b8f\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/a5126222549d41b5a873c03b6e4955a7\"\r\n - \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:23:07.6669164Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:23:19.9437087Z\"\r\n - \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"761b68dc-f9ba-457f-9022-9866da72477d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n + \ \"type\":\"CustomerKey\",\"keyVaultProperties\":{\r\n \"keyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8\",\"currentKeyIdentifier\":\"https://clitest000003.vault.azure.net/keys/ams000005/cc0e509c280449b990ca6aee5ceec3e8\"\r\n + \ }\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:41:40.6382441Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:41:54.1386113Z\"\r\n + \ },\"identity\":{\r\n \"type\":\"SystemAssigned\",\"principalId\":\"6f4545fa-025e-4cdc-8fa5-97111d52ac04\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n \ }\r\n}" headers: cache-control: @@ -671,7 +671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:23:25 GMT + - Tue, 23 Feb 2021 18:41:57 GMT expires: - '-1' odata-version: @@ -722,7 +722,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:23:28 GMT + - Tue, 23 Feb 2021 18:42:00 GMT expires: - '-1' pragma: @@ -766,7 +766,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:23:31 GMT + - Tue, 23 Feb 2021 18:42:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml index 17fc6d9ab88..ba2e95dfd94 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_storage_add_remove.yaml @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"76eee8cb-4cf6-4720-825c-8c11f8644f7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:32.5180057Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:55.5026329Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:55.5026329Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:38 GMT + - Tue, 23 Feb 2021 18:38:58 GMT expires: - '-1' odata-version: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -81,10 +81,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"76eee8cb-4cf6-4720-825c-8c11f8644f7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:32.5180057Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:55.5026329Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:55.5026329Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:38 GMT + - Tue, 23 Feb 2021 18:38:59 GMT expires: - '-1' odata-version: @@ -143,11 +143,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n - \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n - \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"76eee8cb-4cf6-4720-825c-8c11f8644f7d\",\"storageAccounts\":[\r\n + \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n + \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:40.2412054Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:55.5026329Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:39:00.4718122Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:41 GMT + - Tue, 23 Feb 2021 18:39:01 GMT expires: - '-1' odata-version: @@ -202,11 +202,11 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"76eee8cb-4cf6-4720-825c-8c11f8644f7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003\",\"type\":\"Secondary\"\r\n \ },{\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:40.2412054Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:55.5026329Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:39:00.4718122Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -216,7 +216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:43 GMT + - Tue, 23 Feb 2021 18:39:03 GMT expires: - '-1' odata-version: @@ -264,10 +264,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000004\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"East - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"bc6870f9-8178-4c8a-b06d-18f28122804e\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"76eee8cb-4cf6-4720-825c-8c11f8644f7d\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:32.5180057Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:44.4790235Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:55.5026329Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:39:04.1608742Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:45 GMT + - Tue, 23 Feb 2021 18:39:06 GMT expires: - '-1' odata-version: @@ -295,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml index f8bf6a2eb96..6b73d71da5f 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sync_storage_keys.yaml @@ -28,10 +28,10 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"Southeast - Asia\",\"properties\":{\r\n \"mediaServiceId\":\"5ebc9d71-c85e-4feb-9817-7c7fcf73185a\",\"storageAccounts\":[\r\n + Asia\",\"properties\":{\r\n \"mediaServiceId\":\"8ca36ad3-8947-4f6c-aa8f-30e095203662\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ],\"storageAuthentication\":\"System\",\"encryption\":{\r\n - \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T02:24:12.6497259Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T02:24:12.6497259Z\"\r\n + \ \"type\":\"SystemKey\"\r\n }\r\n },\"systemData\":{\r\n \"createdBy\":\"hivyas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-02-23T18:38:36.5262276Z\",\"lastModifiedBy\":\"hivyas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-02-23T18:38:36.5262276Z\"\r\n \ },\"identity\":{\r\n \"type\":\"None\"\r\n }\r\n}" headers: cache-control: @@ -41,7 +41,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 23 Feb 2021 02:24:18 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -92,7 +92,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:24:20 GMT + - Tue, 23 Feb 2021 18:38:40 GMT expires: - '-1' pragma: @@ -139,7 +139,7 @@ interactions: content-length: - '0' date: - - Tue, 23 Feb 2021 02:24:24 GMT + - Tue, 23 Feb 2021 18:38:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py index 045bc8bef4d..c639202e044 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -21,10 +21,9 @@ def test_ams_encryption_set_show(self, resource_group, storage_account_for_creat 'keyVault': key_vault, 'keyName': self.create_random_name(prefix='ams', length=12), 'identityPermissions': "get unwrapkey wrapkey", - 'identity': "System", }) - account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --assign-identity {identity}', checks=[ + account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --id-system-assigned', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US') ]) diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py index ca6418f5a31..32ed8805e4a 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py @@ -16,10 +16,9 @@ def test_ams_create_show(self, resource_group, storage_account_for_create): 'amsname': amsname, 'storageAccount': storage_account_for_create, 'location': 'centralus', - 'identity': 'System' }) - self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --assign-identity {identity}', checks=[ + self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --id-system-assigned', checks=[ self.check('name', '{amsname}'), self.check('location', 'Central US'), self.check('identity.type', 'SystemAssigned') From 7286848f7a3d86e6405f97c9a190dd8cce2293bd Mon Sep 17 00:00:00 2001 From: hivyas <61890270+hivyas@users.noreply.github.com> Date: Tue, 23 Feb 2021 21:27:28 -0600 Subject: [PATCH 30/30] Update azure-cli2017.pyproj Co-authored-by: Yu Chen --- azure-cli2017.pyproj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 0587ae7541a..826cbaa3f91 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -201,9 +201,7 @@ - - Code - + @@ -1490,4 +1488,4 @@ - \ No newline at end of file +